import type { PropType, ExtractPropTypes } from 'vue'; import type { PageConfig } from './types'; export declare const paginationProps: { pageConfig: { type: PropType; default: () => {}; }; pageSizes: { type: PropType; default: () => number[]; }; layout: { type: StringConstructor; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; }; export type PaginationProps = ExtractPropTypes;