import type { PolymorphicComponent } from "../types/helpers"; import type { StateVariant } from "../types/variants"; /** @alpha */ export interface BaseButtonProps { /** The variant of the button */ variant?: "primary" | "secondary"; /** The initial state of the button (if you want to force a specific state) */ state?: StateVariant; } /** * The `Button` component is based off of the HTML `; * ``` * * @example With icon * * ```tsx * ; * ``` * * @alpha */ export declare const Button: PolymorphicComponent<"button", BaseButtonProps>; //# sourceMappingURL=Button.d.ts.map