import type { StoryObj } from '@storybook/react';
import { FloatingTip } from './FloatingTip';
declare const meta: {
    title: string;
    component: typeof FloatingTip;
    tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
