import type { Meta, StoryObj } from '@storybook/react'; import { Pagination } from './Pagination'; /** * Pass an `integer` to `count` variable for the number of pages. * * ```js * import { Pagination } from "@galaxy-ds/core"; * ``` */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Outlined: Story;