import type { SVGProps } from 'react';
export declare const iconSizeVariant: readonly ["s", "m"];
export type IconSize = (typeof iconSizeVariant)[number];
export type IconRef = SVGSVGElement;
export type IconProps = Omit<SVGProps<SVGSVGElement>, 'size'> & {
    size?: IconSize;
    'data-testid'?: string;
};
