import type { Theme } from "../../defaultTheme";
import type { Type } from "../types";
declare const getButtonStyles: ({ disabled, theme, type, }: {
    disabled: boolean;
    theme: Theme;
    type: Type;
}) => {
    background: string;
    backgroundHover: string;
    backgroundActive: string;
    backgroundFocus: string | null;
    foreground: string;
    foregroundHover: string;
    foregroundActive: string;
};
export default getButtonStyles;
