import React from 'react'; import type { ITableInteractive } from './TableInteractive'; export type ITableDialogPreferences = Pick & { tableIdentifier: string; }; export declare const TableDialogPreferences: ({ open, headers, tableIdentifier, columnsTemporary, onCancel, onConfirm, setColumnsTemporary }: ITableDialogPreferences) => React.JSX.Element;