import { Size } from './ButtonCircleLink.types';
declare const CLASS_PREFIX = "md-button-circle-link";
declare const DEFAULTS: {
    COLOR: string;
    DISABLED: boolean;
    SHALLOW_DISABLED: boolean;
    GHOST: boolean;
    OUTLINE: boolean;
    SIZE: number;
    INVERTED: boolean;
};
declare const COLORS: {
    JOIN: string;
    CANCEL: string;
    MESSAGE: string;
};
declare const SIZES: Record<number, Size>;
declare const STYLE: {
    wrapper: string;
};
export { CLASS_PREFIX, STYLE, DEFAULTS, COLORS, SIZES };
