/// <reference types="react" />
export declare const ModalActionLayout: ({ children, error, modalTitle, modalName, modalDescription, }: {
    modalTitle: string;
    modalDescription: string;
    modalName: string;
    children: any;
    error?: string | undefined;
}) => JSX.Element;
