import type { ValuesOf } from "../../util/typings.js"; /** * Appearances for {@link CompoundButton} * Local plural const composed from ButtonAppearances allowing future extensions. * @public */ export declare const CompoundButtonAppearances: { readonly primaryOnBrand: "primary-on-brand"; readonly primary: "primary"; readonly outline: "outline"; readonly subtle: "subtle"; readonly transparent: "transparent"; }; /** * Type describing appearance options for {@link CompoundButton}. * This is the union of the values defined in `CompoundButtonAppearances`. */ export type CompoundButtonAppearance = ValuesOf; /** * Shapes for {@link CompoundButton} * @public */ export declare const CompoundButtonShapes: { readonly circular: "circular"; readonly rounded: "rounded"; readonly square: "square"; }; /** * Type describing shape options for {@link CompoundButton}. * This is the union of the values defined in `CompoundButtonShapes`. */ export type CompoundButtonShape = ValuesOf; /** * Sizes for {@link CompoundButton} * @public */ export declare const CompoundButtonSizes: { readonly small: "small"; readonly medium: "medium"; readonly large: "large"; }; /** * Type describing size options for {@link CompoundButton}. * This is the union of the values defined in `CompoundButtonSizes`. */ export type CompoundButtonSize = ValuesOf; /** * Form targets for {@link CompoundButton} * @public */ export declare const CompoundButtonFormTargets: { readonly blank: "_blank"; readonly self: "_self"; readonly parent: "_parent"; readonly top: "_top"; }; /** * Type describing form target options for {@link CompoundButton}. * This is the union of the values defined in `CompoundButtonFormTargets`. */ export type CompoundButtonFormTarget = ValuesOf; /** * Types for {@link CompoundButton} * @public */ export declare const CompoundButtonTypes: { readonly submit: "submit"; readonly reset: "reset"; readonly button: "button"; }; /** * Type describing button type options for {@link CompoundButton}. * This is the union of the values defined in `CompoundButtonTypes`. */ export type CompoundButtonType = ValuesOf; //# sourceMappingURL=compound-button.options.d.ts.map