/**
 * Returns a number (float) representing the luminance of a color.
 */
declare function getLuminance(color: string): number;
export default getLuminance;
