/** * Generate a color based on a string. * @param str The string to generate a color from. * @param saturation The saturation of the color. * @param lightness The lightness of the color. */ export declare function generateColorFromString(str?: string, saturation?: number, lightness?: number): string;