import { VariantProps } from "class-variance-authority"; import * as React from "react"; import { Button } from "../components/Button"; type ButtonSize = Extract["size"], "xs" | "sm" | "md">; declare const listStyles: (props?: ({ fullWidth?: boolean | null | undefined; size?: "md" | "sm" | "xs" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface ButtonsSwitchListProps extends React.HTMLAttributes, VariantProps { size?: ButtonSize; disabled?: boolean; defaultValue?: string; onValueChange?: (value: string) => void; } export declare const ButtonsSwitchList: React.ForwardRefExoticComponent>; interface ButtonsSwitchProps extends Omit, "size" | "variant"> { value: string; label?: string; icon?: React.ComponentProps["icon"]; } export declare const ButtonsSwitch: React.ForwardRefExoticComponent & React.RefAttributes>; export default ButtonsSwitch; //# sourceMappingURL=ButtonsSwitch.d.ts.map