import type { Type } from "../types";
import type { Theme } from "../../defaultTheme";
interface ButtonLinkStyles {
    background?: string;
    backgroundHover?: string;
    backgroundActive?: string;
    backgroundFocus?: string;
    foreground?: string;
    foregroundHover?: string;
    foregroundActive?: string;
    foregroundFocus?: string;
}
type GetButtonLinkStylesType = ({ type, theme, compact, }: {
    type: Type;
    theme: Theme;
    compact: boolean;
}) => ButtonLinkStyles;
declare const getButtonLinkStyles: GetButtonLinkStylesType;
export default getButtonLinkStyles;
