import type { StyleSlots } from '../../../core/types'; /** Visual regions for the Button component. */ type ButtonSlot = 'root'; declare const buttonStyles: StyleSlots; /** * CVA variants for the Button root. * * @see {@link https://cva.style/docs/getting-started/variants} */ declare const buttonVariants: (props?: ({ variant?: "link" | "default" | "outline" | "success" | "destructive" | "warning" | "ghost" | "secondary" | "bare" | null | undefined; size?: "default" | "icon" | "sm" | "lg" | "bare" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; /** State-specific style classes for Button. */ declare const buttonStateStyles: { pressed: string; disabled: string; }; export { buttonStyles, buttonVariants, buttonStateStyles }; export type { ButtonSlot }; //# sourceMappingURL=Button.styles.d.ts.map