export type MultiSelectionActionsProps = {
    show: boolean;
    disabled?: boolean;
    tempValueLength: number;
    formatMessage: (key: string, values?: Record<string, any>) => string;
    translation: {
        confirmButton: string;
        cancelButton: string;
    };
    onConfirm: () => void;
    onCancel: () => void;
};
export declare function MultiSelectionActions({ show, disabled, tempValueLength, formatMessage, translation, onConfirm, onCancel, }: MultiSelectionActionsProps): import("react/jsx-runtime").JSX.Element;
