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