import type { CSSObject, Theme } from "@emotion/react"; import type { ButtonProps } from "../../../components/Button/Button"; type VariantProps = Pick & { theme: Theme; }; export declare function getPrimaryVariantStyles({ theme, destructive, disabled, }: VariantProps): CSSObject; export declare function getSecondaryVariantStyles({ theme, disabled, size, }: Omit): CSSObject; export declare function getTertiaryVariantStyles({ theme, destructive, disabled, size, }: VariantProps): CSSObject; export {};