import { FC } from 'react';
import { ButtonProps, ButtonRef } from '../Button';
export interface IconButtonProps extends Omit<ButtonProps, 'fullWidth' | 'start' | 'end'> {
}
export declare const IconButton: FC<IconButtonProps & ButtonRef>;
