import { IconNode, Shape } from '../../types';
import { BaseRegularButtonProps } from '../types';
export type IconButtonProps = {
    shape?: Shape;
    children: IconNode;
} & BaseRegularButtonProps;
export declare const IconButton: import('react').ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>>;
