import type { BadgeProps } from "@twilio-paste/badge"; import * as React from "react"; export type SidebarBetaBadgeProps = Omit & { /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "SIDEBAR_BETA_BADGE" * @type {BadgeProps["element"]} */ element?: BadgeProps["element"]; /** * The HTML element ro render the Badge as. * * @default "span" * @type {("span" | "button")} */ as: "span" | "button"; }; export declare const SidebarBetaBadge: React.ForwardRefExoticComponent & { /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "SIDEBAR_BETA_BADGE" * @type {BadgeProps["element"]} */ element?: BadgeProps["element"]; /** * The HTML element ro render the Badge as. * * @default "span" * @type {("span" | "button")} */ as: "span" | "button"; } & React.RefAttributes>; //# sourceMappingURL=SidebarBetaBadge.d.ts.map