/** * Returns the complement of the provided color. This is identical to adjustHue(180, ). * * @example * background: complement('#448'), * background: complement('rgba(204,205,100,0.7)'), */ export declare function complement(color: string): string;