/// import { ITableProps } from '.'; export interface IDetailsPageSettingsProps { model: ITableProps; onSave: (model: ITableProps) => void; onCancel: () => void; onValuesChange?: (changedValues: any, values: ITableProps) => void; } declare function TableFormSettings({ onSave, model, onValuesChange }: IDetailsPageSettingsProps): JSX.Element; export default TableFormSettings;