export declare const parseColor: ({ unparsedColor, alpha, }: {
    unparsedColor: string;
    alpha?: number;
}) => string;
export declare const mixColors: (color1: string, color2: string) => any;
export declare const getRailStyle: ({ gradientColor, disabled, direction, }: {
    gradientColor: string;
    disabled: boolean;
    direction: string;
}) => {
    'box-shadow': string;
    background: string;
} | undefined;
export declare const getThumbStyle: ({ gradientColor, alpha, disabled, }: {
    gradientColor: string;
    alpha: number;
    disabled: boolean;
}) => {
    outline: string;
    background: string;
} | undefined;
//# sourceMappingURL=utils.d.ts.map