import type { Input as PaginationInput } from "../index.marko";
export interface Input {
}
class {
    declare state: {
    current: number;
};
    onCreate(): void { return 1 as any; }
    declare handlePrev: PaginationInput["on-previous"];
    declare handleNext: PaginationInput["on-next"];
    handleSelect(e: {
    index: number;
}): void { return 1 as any; }
}
