export declare const rgbaFloatToHex: ({ r, g, b, a }: {
    r: number;
    g: number;
    b: number;
    a?: number;
}, alpha?: boolean) => string;
