declare const CLASS_PREFIX = "md-checkbox";
declare const DEFAULTS: {
    IS_SELECTED: boolean;
    IS_DISABLED: boolean;
    IS_INDETERMINATE: boolean;
    LABEL: any;
};
declare const STYLE: {
    wrapper: string;
    label: string;
    selected: string;
    notSelected: string;
    focus: string;
    icon: string;
    description: string;
};
export { CLASS_PREFIX, DEFAULTS, STYLE };
