import type { PropsWithChildren } from 'react';
export interface SvgIconProps {
    color?: SvgIconColor;
    viewBox?: string;
}
export type SvgIconColor = 'default' | 'inherit' | 'primary' | 'secondary';
declare function SvgIcon({ children, color, viewBox, }: PropsWithChildren<SvgIconProps>): JSX.Element;
export default SvgIcon;
