/** * Capitalizes the first letter of a phrase * * @example * strCap("lower case"); * => "Lower case" * * @param a - A string */ export declare const strCap: (a: string) => string; export { strCap as strCapitalize, strCap as stringCap, strCap as stringCapitalize, }; //# sourceMappingURL=strCap.d.ts.map