/// import { CustomModalLayoutProps } from '@wix/design-system'; export type SettingsPreferences = { groupType?: 'views' | 'tabs'; filters?: boolean; dnd?: boolean; customColumns?: boolean; addNew?: boolean; bulkActions?: boolean; advancedSorting?: boolean; limit: number; initialError?: boolean; refreshError?: boolean; fetchNextPageError?: boolean; fetchTranslationsError?: boolean; }; export interface SettingsModalLayoutProps extends CustomModalLayoutProps { ok: (preferences: SettingsPreferences) => void; cancel: () => void; preferences: SettingsPreferences; } export declare const SettingsModalLayout: (props: SettingsModalLayoutProps) => JSX.Element; //# sourceMappingURL=SettingsModalLayout.d.ts.map