import { FC, ReactNode } from 'react'; declare type SVGWrapperProps = { label: string; size: string; color?: string; width?: string; height?: string; className?: string; children?: ReactNode; }; export declare const SVGWrapper: FC; export {};