/** * Converts the first character of `string` to upper case. * * upperFirst('fred') // => 'Fred' * upperFirst('FRED') // => 'FRED' */ export declare function upperFirst(input: string): string;