export declare const DEFAULT_TYPE = "default"; export declare const DEFAULT_CURRENT = 1; export declare const DEFAULT_PAGE_SIZE = 10; export declare const PREV = "prev"; export declare const NEXT = "next"; export declare const MORE = "more"; export declare const defaultProps: { total: number; pageSizeChangeResetCurrent: boolean; bufferSize: number; }; export declare const PAGINATION_NAMESPACE = "Pagination"; export declare const PAGINATION_LOCAL: { en_us: { goto: string; page: string; countPerPage: string; total: string; prev: string; next: string; currentPage: string; prevSomePages: string; nextSomePages: string; pageSize: string; }; zh_cn: { goto: string; page: string; countPerPage: string; total: string; prev: string; next: string; currentPage: string; prevSomePages: string; nextSomePages: string; pageSize: string; }; };