import * as React from 'react'; import type { SVGProps } from 'react'; export interface ISvgIconProps extends SVGProps { className?: string; size?: number; style?: React.CSSProperties; } declare const SvgCheckXs: React.ForwardRefExoticComponent & React.RefAttributes>; export default SvgCheckXs;