import { MouseEventHandler } from 'react'; import { ResponsiveValue, StyleProps } from '@chakra-ui/react'; export declare const iconSizes: readonly ["xs", "s", "m", "l"]; export type IconSize = (typeof iconSizes)[number]; export interface IconProps extends StyleProps { boxSize?: string | number; size?: ResponsiveValue; onClick?: MouseEventHandler; }