import type { Meta, StoryObj } from "@storybook/react"; import { Checkbox } from "@appsmith/wds"; /** * Checkbox is a component that allows the user to select one or more options from a set. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Main: Story; export declare const States: Story; export declare const IsRequired: Story;