declare type ActionType = { label: string; url: string; }; export declare type OptionType = { value: string; label: string; }; export declare type FieldType = { label: string; dataIndex: string; type: string; mask?: string; options?: OptionType[]; url?: string; parent?: string; }; declare type ListActionType = { label: string; action: { type: string; url: string; }; type?: string; }; export declare type ExportType = { label: string; url: string; }; declare type SortType = { dataIndex: string; direction: string; }; declare type FormActionType = { label: string; type: 'submit' | 'button'; route?: { method: string; url: string; }; }; export declare type VerificationType = { method: string; url: string; }; export declare type FormFieldType = { label: string; name: string; type: string; mask?: string; options?: OptionType[]; url?: string; parent?: string; verification?: VerificationType; readOnly: string; required: boolean; }; export declare type ConfigType = { id: string; label: string; slug: string; actions: ActionType[]; filter: { hasSearch: boolean; fields: FieldType[]; }; list: { url: string; usePagination?: boolean; defaultSort?: SortType; perPage?: number; fields: FieldType[]; actions?: ListActionType[]; footer: { [key: string]: string; }; }; exports: ExportType[]; form: { actions: FormActionType[]; fields: FormFieldType[]; }; }; declare type FiltersType = { [key: string]: string | number; }; export interface ChangeParentData { parent: string; value: string | number; } interface State { config: ConfigType | null; setConfig: (config: ConfigType) => void; totalCount: number; setTotalCount: (totalCount: number) => void; currentPage: number; setCurrentPage: (totalCount: number) => void; perPage: number; setPerPage: (totalCount: number) => void; filtersVisible: boolean; toggleFiltersVisibility: () => void; filters: FiltersType; setFilters: (filters: FiltersType) => void; filterParents: FiltersType; changeParent: (changeParentData: ChangeParentData) => void; sort: SortType; setSort: (sort: SortType) => void; } export declare const usePageBuilderStore: import("zustand").UseBoundStore>; export {};