import * as React from "react"; import { Button } from "./button"; declare const colorThemes: readonly [{ readonly name: "default"; readonly label: "Default"; readonly color: "bg-zinc-900"; }, { readonly name: "blue"; readonly label: "Blue"; readonly color: "bg-blue-600"; }, { readonly name: "green"; readonly label: "Green"; readonly color: "bg-green-600"; }, { readonly name: "orange"; readonly label: "Orange"; readonly color: "bg-orange-600"; }, { readonly name: "red"; readonly label: "Red"; readonly color: "bg-red-600"; }, { readonly name: "violet"; readonly label: "Violet"; readonly color: "bg-violet-600"; }, { readonly name: "yellow"; readonly label: "Yellow"; readonly color: "bg-yellow-500"; }]; export type ColorTheme = (typeof colorThemes)[number]["name"]; export declare const ThemeSwitcher: ({ className, ...props }: React.ComponentProps) => React.JSX.Element; export {};