/** * Inverts the red, green and blue values of a color. * * @example * background: invert('#CCCD64'), * background: invert('rgba(101,100,205,0.7)'), */ export declare function invert(color: string): string;