import * as React from 'react';
import type { AnchorHTMLAttributesOnly } from '../../types';
import type { AlertActionInterface } from './Alert';
export interface AlertActionProps extends Pick<AlertActionInterface, 'Component' | 'mode'>, AnchorHTMLAttributesOnly {
    /**
     * Содержимое компонента.
     */
    children: string;
    /**
     * Обработчик нажатия.
     */
    onClick: React.MouseEventHandler<HTMLElement>;
}
export declare const AlertAction: (props: AlertActionProps) => React.ReactNode;
//# sourceMappingURL=AlertAction.d.ts.map