import * as React from 'react';
import type { AlertActionInterface, AlertProps } from './Alert';
type ItemClickHandler = (item: AlertActionInterface) => void;
interface AlertActionsProps extends Pick<AlertProps, 'actions' | 'actionsAlign' | 'renderAction' | 'actionsLayout'> {
    /**
     * Обработчик нажатия на одну из опций.
     */
    onItemClick: ItemClickHandler;
}
export declare const AlertActions: ({ actions, renderAction, onItemClick, actionsAlign, actionsLayout, }: AlertActionsProps) => React.ReactNode;
export {};
//# sourceMappingURL=AlertActions.d.ts.map