export namespace defaultSvg { export { Svg as component }; export { svgStyles as styles }; export { svgAttributes as attributes }; } declare function Svg({ state: _, ...rest }: { [x: string]: any; state: any; }): JSX.Element; declare function svgStyles(): { label: string; }; declare function svgAttributes(_: any, { assistiveText, viewBoxWidth, viewBoxHeight }: { assistiveText: any; viewBoxWidth: any; viewBoxHeight: any; }): { 'aria-label': any; xmlns: string; viewBox: string; role: string; focusable: string; }; export {};