import React from 'react'; type Size = 'large' | 'medium' | 'small' | 'exSmall'; type Variant = 'contained' | 'outlined' | 'lighted' | 'neutral' | 'danger'; interface Props extends Omit, 'className'> { children?: React.ReactNode; size?: Size; variant?: Variant; } export declare const IconButton: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=IconButton.d.ts.map