import { default as React } from 'react'; import { StoryObj } from '@storybook/react'; interface WhatsAppDemoProps { position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'center'; offsetX?: number; offsetY?: number; backgroundColor?: string; textColor?: string; borderRadius?: number; padding?: string; boxShadow?: string; text?: string; } declare const meta: { title: string; component: React.FC; parameters: { layout: string; docs: { description: { component: string; }; }; }; argTypes: { position: { control: { type: "select"; options: string[]; }; description: string; table: { category: string; }; }; offsetX: { control: { type: "number"; }; description: string; table: { category: string; }; }; offsetY: { control: { type: "number"; }; description: string; table: { category: string; }; }; backgroundColor: { control: "color"; description: string; table: { category: string; }; }; textColor: { control: "color"; description: string; table: { category: string; }; }; borderRadius: { control: { type: "number"; }; description: string; table: { category: string; }; }; padding: { control: "text"; description: string; table: { category: string; }; }; boxShadow: { control: "text"; description: string; table: { category: string; }; }; text: { control: "text"; description: string; table: { category: string; }; }; }; }; export default meta; type Story = StoryObj; export declare const Demo: Story;