import type { Meta, StoryObj } from "@storybook/react"; import { ThemeSelector } from "../../components/theme-selector"; declare const meta: Meta; export default meta; type Story = StoryObj; /** * Default ThemeSelector with all features enabled. */ export declare const Default: Story; /** * ThemeSelector with only brand color selection. */ export declare const BrandColorsOnly: Story; /** * ThemeSelector with only mode toggle (Day/Night/Auto). */ export declare const ModeToggleOnly: Story; /** * ThemeSelector with only theme toggle (Dark/Lite). */ export declare const ThemeToggleOnly: Story; /** * ThemeSelector with custom brand colors. */ export declare const WithCustomBrandColors: Story; /** * ThemeSelector with callbacks to demonstrate integration. */ export declare const WithCallbacks: Story; //# sourceMappingURL=ThemeSelector.stories.d.ts.map