import { type TappableOmitProps } from '../Tappable/Tappable';
export interface IconButtonProps extends TappableOmitProps {
    /**
     * Текст кнопки-иконки. Делает ее доступной для ассистивных технологий.
     */
    label?: string;
}
/**
 * @see https://vkui.io/components/icon-button
 */
export declare const IconButton: ({ label, children, ...restProps }: IconButtonProps) => React.ReactNode;
//# sourceMappingURL=IconButton.d.ts.map