import React from 'react'; import type { PropsWithChildren } from 'react'; import type { SizeType } from '../../types'; type SvgProps = PropsWithChildren>; export declare const useSvgWrapper: (size?: SizeType) => readonly [({ children, ...otherProps }: SvgProps) => React.JSX.Element, number]; export {};