import type { StoryObj } from "@storybook/react"; import { VoicePicker } from "../index_with_tw_base"; declare const meta: { title: string; component: typeof VoicePicker; tags: string[]; parameters: { layout: string; }; argTypes: { status: { control: false; }; level: { control: false; }; elapsedSeconds: { control: false; }; onRecordStart: { control: false; }; onRecordStop: { control: false; }; buttonProps: { control: false; }; size: { control: { type: "select"; }; options: string[]; }; disabled: { control: "boolean"; }; showStopLabel: { control: "boolean"; }; pressDelayMs: { control: "number"; }; }; }; export default meta; type Story = StoryObj; export declare const Interactive: Story; //# sourceMappingURL=VoicePicker.stories.d.ts.map