import { ButtonProps } from "../components/Button"; import { MasterToken, WithoutThemeOptionValues } from "../styling"; type Variant = Exclude; type Theme = WithoutThemeOptionValues; type ButtonColorVariant = Exclude; /** * Get background color for button. * @param theme theme * @param variant button variant * @param color button color variant * @param disabled whether the button is disabled or not * @returns a color value, or 'transparent' */ export declare const getBackgroundColorForButton: (theme: Theme, variant: Variant, color: ButtonColorVariant, disabled: boolean) => import("../styling").Color | "transparent"; export {};