import * as React from 'react';
import { type TappableOmitProps } from '../Tappable/Tappable';
export interface ModalOutsideButtonProps extends TappableOmitProps {
    /**
     * Текст для скринридера.
     */
    'aria-label'?: string;
    /**
     * Рекомендуется использовать иконки размером `20px`.
     */
    'children': React.ReactNode;
}
/**
 * @see https://vkui.io/components/modal-outside-button
 */
export declare const ModalOutsideButton: ({ children, "aria-label": ariaLabel, ...restProps }: ModalOutsideButtonProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ModalOutsideButton.d.ts.map