import type { Meta, StoryObj } from '@storybook/react'; import { Switch } from './Switch'; /** * ```js * import { Switch } from "@galaxy-ds/core"; * ``` */ declare const meta: Meta; export default meta; type Story = StoryObj; /** * Toggle button or switch. Only one colour (`default`) and one size supported. * */ export declare const Default: Story; export declare const Disabled: Story; export declare const Label: Story;