import { Story } from '@storybook/react'; import { TooltipProps } from './Tooltip'; declare const _default: { title: string; component: ({ data, children, placement, initialVisibility, arrowProps, style, backgroundColor, }: TooltipProps) => JSX.Element; argTypes: { initialVisibility: { control: { type: string; }; }; placement: { control: { type: string; options: string[]; }; }; }; }; export default _default; export declare const Demo: Story;