@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
14 lines (13 loc) • 535 B
TypeScript
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;