import { Nil } from '../interfaces'; /** * Converts the first character of `string` to upper case. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 1,951 bytes * - Micro-dash: 63 bytes */ export declare function upperFirst(string: string | Nil): string;