import { Meta, StoryObj } from '@storybook/web-components';
import { IAriaLabelValues } from './modus-wc-pagination';
interface PaginationArgs {
    'aria-label-values'?: IAriaLabelValues;
    count: number;
    'custom-class'?: string;
    'next-button-text'?: string;
    page: number;
    'prev-button-text'?: string;
    size?: 'sm' | 'md' | 'lg';
}
declare const meta: Meta<PaginationArgs>;
export default meta;
type Story = StoryObj<PaginationArgs>;
export declare const Default: Story;
export declare const Migration: Story;
