import { ViewId, ViewTypes } from '@veeqo/ui/dist/components/View/types'; export declare type ViewKey = ViewId; declare global { interface Window { customViewsScrollBehavior: ScrollBehavior; } } export declare type Shared = 'false' | 'true'; export declare type ViewType = { id?: ViewId; key: ViewKey; label: string; type: keyof typeof ViewTypes; count?: number; editable: boolean; default: boolean; shared: boolean; duplicatable: boolean; }; export declare type IncludedFilter = { label: string; text: string; }; export declare type ViewsClassNames = { container?: string; controls?: string; createButton?: string; reorderButton?: string; loader?: string; reorderDropdown?: string; fixedViews?: string; fixedView?: string; }; export declare type ViewClassNames = { view?: string; optionsDropdown?: string; savedViewEditDropdown?: string; draftViewEditDropdown?: string; deleteConfirmation?: string; draftViewInfoPill?: string; successNotification?: string; unsavedChangesPill?: string; }; export declare type CommonViewPropTypes = { activeViewKey: ViewKey; includedFilters: IncludedFilter[]; hasUnsavedChanges: boolean; pageName?: string; }; export declare type ViewHandlers = { onSave: (key: ViewKey, viewName: ViewName, editable: boolean, shared: boolean) => void; onDelete: (key: ViewKey) => void; handleDuplicateView: (key: ViewKey) => void; handleChangeActiveView: (key: ViewKey) => void; handleCreateCustomViewWithCurrentFilters: () => void; handleDiscardUnsavedChanges: () => void; handleSaveToCurrentView: (key: ViewKey, editable: boolean) => void; handleSetDefault: (key: ViewKey, isDefault: boolean) => void; }; export declare type ViewName = string; //# sourceMappingURL=types.d.ts.map