/// import { ComponentStory } from '@storybook/react'; declare const Story: { title: string; component: ({ tooltipItemId, onBottom, onRight, bodyText, lightText, buttonText, onClick, onClose, }: import("./Tooltip").Props) => JSX.Element; argTypes: { bodyText: { type: { name: string; required: boolean; }; defaultValue: string; description: string; table: { type: { summary: string; }; }; control: { type: string; }; }; onBottom: { type: { name: string; required: boolean; }; defaultValue: boolean; table: { type: { summary: string; }; defaultValue: { summary: boolean; }; }; }; lightText: { type: { name: string; required: boolean; }; defaultValue: string; description: string; table: { type: { summary: string; }; }; control: { type: string; }; }; buttonText: { type: { name: string; required: boolean; }; defaultValue: string; description: string; table: { type: { summary: string; }; }; control: { type: string; }; }; tooltipItemId: { type: { name: string; required: boolean; }; description: string; control: { type: string; }; }; }; }; export default Story; export declare const Default: ComponentStory<({ tooltipItemId, onBottom, onRight, bodyText, lightText, buttonText, onClick, onClose, }: import("./Tooltip").Props) => JSX.Element>;