import './tooltip'; import type { TemplateResult } from 'lit'; declare type PlacementType = 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end'; declare const _default: { title: string; component: string; argTypes: { content: { control: string; }; placement: { control: string; options: string[]; }; disabled: { control: string; }; distance: { control: { type: string; min: number; max: number; step: number; }; }; open: { control: string; }; skidding: { control: { type: string; min: number; max: number; step: number; }; }; trigger: { control: string; options: string[]; }; hoist: { control: string; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { content: string; placement: PlacementType; disabled: boolean; distance: number; open: boolean; skidding: number; trigger: string; hoist: boolean; maxWidth: string; hideDelay: string; showDelay: string; } export declare const Default: Story; export declare const PropFilled: Story;