declare const CLASS_PREFIX = "md-slider";
declare const DEFAULTS: {
    DISABLED: boolean;
    VALUE: number;
    MIN: number;
    MAX: number;
    STEP: number;
};
declare const STYLE: {
    wrapper: string;
};
export { CLASS_PREFIX, DEFAULTS, STYLE };
