import type * as React from 'react';
export type SvgIconProps = React.SVGProps<SVGSVGElement> & {
    width?: number | undefined;
    height?: number | undefined;
    getRootRef?: React.Ref<SVGSVGElement> | undefined;
    title?: string | undefined;
};
type SvgIconRootProps = SvgIconProps & {
    baseClassName: string;
};
export declare function SvgIconRoot({ width, height, display, 'aria-hidden': ariaHidden, className, baseClassName, getRootRef, style, title, children, ...restProps }: SvgIconRootProps): import("react/jsx-runtime").JSX.Element;
export {};
