declare const CLASS_PREFIX = "md-toggle";
declare const DEFAULTS: {
    IS_DISABLED: boolean;
    DEFAULT_SELECTION: boolean;
    LABEL: any;
};
declare const STYLE: {
    wrapper: string;
    toggle: string;
    on: string;
    off: string;
};
export { CLASS_PREFIX, DEFAULTS, STYLE };
