import { StoryObj } from '@storybook/react'; import { default as Paginator } from '../Paginator'; declare const meta: { component: typeof Paginator; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { currentPage: { description: string; type: { name: "number"; }; table: { defaultValue: { summary: string; }; }; }; showPages: { description: string; type: { name: "number"; }; table: { defaultValue: { summary: string; }; }; }; onPageChange: { description: string; type: { name: "function"; }; }; outlinedButton: { description: string; type: { name: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; numberButtonStyle: { description: string; type: { name: "string"; }; table: { defaultValue: { summary: string; }; }; }; pageLimits: { description: string; type: { name: "number"; }; table: { defaultValue: { summary: string; }; }; }; themeType: { description: string; control: { type: "select"; }; options: ("primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent" | undefined)[]; table: { defaultValue: { summary: "primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent"; }; }; }; layer: { description: string; control: { type: "range"; min: number; max: number; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;