import { StoryObj } from '@storybook/react';
import { default as FancyPageList } from '../FancyPageList';
declare const meta: {
    component: typeof FancyPageList;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        itemsPerPage: {
            type: {
                name: "number";
                required: false;
            };
            description: string;
        };
        elements: {
            description: string;
        };
        spacingBetweenItems: {
            type: {
                name: "string";
                required: false;
            };
            description: string;
        };
        showPages: {
            type: {
                name: "number";
                required: false;
            };
            description: string;
        };
        buttonDesign: {
            control: {
                type: "select";
            };
            description: string;
        };
        outlinedButton: {
            type: {
                name: "boolean";
                required: false;
            };
            description: string;
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
