import { Meta, StoryObj } from '@storybook/web-components';
import { Orientation } from '../types';
interface DividerArgs {
    color: 'primary' | 'secondary' | 'tertiary' | 'high-contrast' | 'success' | 'warning' | 'danger';
    content: string;
    'custom-class'?: string;
    orientation: Orientation;
    position: 'center' | 'end' | 'start';
    responsive: boolean;
}
declare const meta: Meta<DividerArgs>;
export default meta;
type Story = StoryObj<DividerArgs>;
export declare const Default: Story;
export declare const ShadowDomParent: Story;
