import type * as React from 'react';
import { type SvgIconProps } from './SvgIconRoot';
type SvgIconRootV2Props = SvgIconProps & {
    vkuiIconId: string;
    vkuiProps: SvgIconProps;
    vkuiAttrs?: SvgIconProps | undefined;
    children?: React.ReactElement | undefined;
};
export declare function SvgIconRootV2({ vkuiIconId, vkuiAttrs, children, vkuiProps, width: widthProp, height: heightProp, viewBox: viewBoxProp, ...restProps }: SvgIconRootV2Props): import("react/jsx-runtime").JSX.Element;
export {};
