///
import * as uuiComponents from '@epam/uui-components';
import { Overwrite } from '@epam/uui-core';
interface IconButtonMods {
/**
* Defines component color.
* @default 'neutral'
*/
color?: 'info' | 'success' | 'error' | 'primary' | 'accent' | 'critical' | 'warning' | 'secondary' | 'neutral' | 'white';
/**
* Defines component size.
*/
size?: '18' | '24' | '30' | '36';
}
/** Represents the Core properties of the IconButton component. */
export type IconButtonCoreProps = Omit;
export interface IconButtonModsOverride {
}
/** Represents the properties of the IconButton component. */
export interface IconButtonProps extends IconButtonCoreProps, Overwrite {
}
export declare const IconButton: import("react").ComponentType>;
export {};
//# sourceMappingURL=IconButton.d.ts.map