import { Meta, StoryObj } from '@storybook/web-components';
import { DaisySize, Orientation } from '../types';
interface HandleArgs {
    'custom-class'?: string;
    'default-split'?: number;
    density?: 'compact' | 'comfortable' | 'relaxed';
    'button-color'?: 'primary' | 'secondary' | 'tertiary' | 'warning' | 'danger';
    'button-size'?: DaisySize | 'xl';
    'button-variant'?: 'borderless' | 'filled' | 'outlined';
    'left-target'?: string;
    orientation?: Orientation;
    'right-target'?: string;
    size?: 'default' | 'lg' | 'xl' | '2xl';
    type?: 'bar' | 'button';
}
declare const meta: Meta<HandleArgs>;
export default meta;
type Story = StoryObj<HandleArgs>;
export declare const Default: Story;
export declare const ButtonVariant: Story;
export declare const MultipleHandlesNested: Story;
export declare const ShadowDomParent: Story;
