import { Meta, StoryObj } from '@storybook/react-vite'; import { default as Label } from './Label'; declare const meta: Meta; export default meta; type Story = StoryObj; /** * Main Story for the Label component. This must contains the `args` * and `parameters` properties in this object. */ export declare const WithControls: Story; export declare const RequiredState: Story; export declare const CustomRequiredText: Story;