export interface IconProps { fill?: string; contrast?: string; stroke?: string; style?: React.CSSProperties; className?: string; size?: number; onClick?: () => void; preserveAspectRatio?: 'none'; } export declare function useIconProps(props: IconProps): IconProps & { width?: number | string; height?: number | string; };