import { StoryObj } from '@storybook/react';
import { default as FancyLI } from './FancyLI';
declare const meta: {
    component: typeof FancyLI;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        sizeC: {
            control: {
                type: "select";
            };
            options: string[];
        };
        aligned: {
            control: {
                type: "select";
            };
            options: string[];
        };
    };
    tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
