import { Meta, StoryObj } from '@storybook/react-vite'; import { default as Pagination } from './Pagination'; declare const meta: Meta; export default meta; type Story = StoryObj; /** * The Pagination component doesn't have a "main" story. Both variations are * equally important with two separate features so they will both be highlighted. * This must contains the `args` and `parameters` properties in this object. */ export declare const URLUpdates: Story; export declare const UnchangingURL: Story; export declare const UpdateProgrammatically: Story;