/**
 * Capitalizes string
 * @param src Source string
 */
declare const capitalize: (src: string) => string;
export default capitalize;
