import { StoryObj } from '@storybook/html';
import { SeparatorProps } from './Separator';
declare const meta: {
    title: string;
    render: (args: SeparatorProps) => DocumentFragment;
    argTypes: {
        space: {
            control: {
                type: string;
                min: number;
                max: number;
            };
        };
        padding: {
            control: {
                type: string;
                min: number;
                max: number;
            };
        };
    };
};
export default meta;
type Story = StoryObj<SeparatorProps>;
export declare const Normal: Story;
