import "./btn.css"; import React from "react"; import { BaseButtonElementProps } from "./BaseButton"; export type ButtonElementProps = Omit & { /** The text content of the button. */ label: string; }; /** * A button component that renders as a button element. * Supports various sizes, styles, and content types. * Label must be a string. * * @component */ export declare const Button: React.ForwardRefExoticComponent & { /** The text content of the button. */ label: string; } & React.RefAttributes>; //# sourceMappingURL=Button.d.ts.map