export interface PaginationProps { justify?: "start" | "center" | "end" | ""; ariaLabel?: string; current: number; pages: []; isBordered?: boolean; isFirstLast?: boolean; navigationLabels?: any; } declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { ariaLabel: string; isFirstLast: boolean; navigationLabels: { first: string; last: string; previous: string; next: string; }; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update-page"[], "update-page", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly, { ariaLabel: string; isFirstLast: boolean; navigationLabels: { first: string; last: string; previous: string; next: string; }; }>>> & { "onUpdate-page"?: ((...args: any[]) => any) | undefined; }, { ariaLabel: string; isFirstLast: boolean; navigationLabels: any; }>; export default _default; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? P[K] & { default: D[K]; } : P[K]; };