import type { Theme } from "../../defaultTheme";
import type { Type } from "../types";
interface Output {
    background: string;
    backgroundHover: string;
    backgroundActive: string;
    backgroundFocus: string | null;
    foreground: string;
    foregroundHover: string;
    foregroundActive: string;
    boxShadow: string | null;
    boxShadowActive: string | null;
    boxShadowFocus: string | null;
    contentAlign: "start" | "center" | "end";
    contentWidth: string;
}
declare const getButtonStyles: ({ theme, disabled, type, }: {
    theme: Theme;
    disabled: boolean;
    type: Type;
}) => Output;
export default getButtonStyles;
