import { ExtractPropTypes } from "vue";
export declare const UiPaginationPropsOption: {
    readonly skip: {
        readonly type: NumberConstructor;
        readonly default: 2;
    };
    readonly count: {
        readonly type: NumberConstructor;
        readonly required: true;
    };
    readonly items: {
        readonly type: BooleanConstructor;
        readonly default: true;
    };
    readonly limit: {
        readonly type: NumberConstructor;
        readonly default: 10;
    };
    readonly modelValue: {
        readonly type: NumberConstructor;
        readonly required: true;
    };
};
export type UiPaginationProps = ExtractPropTypes<typeof UiPaginationPropsOption>;
export declare const UiPaginationEmits: {
    "update:modelValue": (key: number) => boolean;
    change: (key?: number) => boolean;
};
