import { Instance, SnapshotIn } from 'mobx-state-tree'; export declare const PaginationStore: import("mobx-state-tree").IModelType<{ id: import("mobx-state-tree").ISimpleType; path: import("mobx-state-tree").IType; storeType: import("mobx-state-tree").ISimpleType; disposed: import("mobx-state-tree").IType; parentId: import("mobx-state-tree").IType; childrenIds: import("mobx-state-tree").IOptionalIType>, [undefined]>; } & { hasRemoteData: import("mobx-state-tree").IOptionalIType, [undefined]>; data: import("mobx-state-tree").IOptionalIType, [undefined]>; initedAt: import("mobx-state-tree").IType; updatedAt: import("mobx-state-tree").IType; pristine: import("mobx-state-tree").IOptionalIType, [undefined]>; pristineRaw: import("mobx-state-tree").IOptionalIType, [undefined]>; upStreamData: import("mobx-state-tree").IOptionalIType, [undefined]>; action: import("mobx-state-tree").IOptionalIType, [undefined]>; dialogSchema: import("mobx-state-tree").IType; dialogOpen: import("mobx-state-tree").IType; dialogData: import("mobx-state-tree").IOptionalIType, [undefined]>; drawerSchema: import("mobx-state-tree").IType; drawerOpen: import("mobx-state-tree").IType; drawerData: import("mobx-state-tree").IOptionalIType, [undefined]>; } & { page: import("mobx-state-tree").IType; perPage: import("mobx-state-tree").IType; inputName: import("mobx-state-tree").IType; outputName: import("mobx-state-tree").IType; mode: import("mobx-state-tree").IType; ellipsisPageGap: import("mobx-state-tree").IType; }, { readonly parentStore: any; readonly __: any; readonly hasChildren: boolean; readonly children: any[]; } & { onChildStoreDispose(child: any): void; syncProps(props: any, prevProps: any, list?: string[]): void; dispose: (callback?: (() => void) | undefined) => void; addChildId: (id: string) => void; removeChildId: (id: string) => void; } & { getValueByName(name: string, canAccessSuper?: boolean): any; getPristineValueByName(name: string): any; readonly pristineDiff: any; } & { setTopStore(value: any): void; initData(data?: object, skipSetPristine?: boolean, changeReason?: import("..").DataChangeReason | undefined): void; temporaryUpdateGlobalVars(globalVar: any): void; unDoTemporaryUpdateGlobalVars(): void; reset(): void; updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("..").DataChangeReason | undefined): void; changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined, changeReason?: import("..").DataChangeReason | undefined): void; setCurrentAction(action: any, resolveDefinitions?: ((schema: any) => any) | undefined): void; openDialog(ctx: any, additonal?: object | undefined, callback?: ((confirmed: boolean, values: any) => void) | undefined, scoped?: import("..").IScopedContext | undefined): void; closeDialog(confirmed?: any, data?: any): void; openDrawer(ctx: any, additonal?: object | undefined, callback?: ((confirmed: boolean, ret: any) => void) | undefined, scoped?: import("..").IScopedContext | undefined): void; closeDrawer(confirmed?: any, data?: any): void; getDialogScoped(): import("..").IScopedContext | null; getDrawerScoped(): import("..").IScopedContext | null; } & { readonly inputItems: any[]; readonly locals: object; readonly lastPage: number; } & { switchTo(page: number, perPage?: number): void; }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>; export type IPaginationStore = Instance; export type SPaginationStore = SnapshotIn;