/** * Makes first letter of a string uppercase * * Note: [🔂] This function is idempotent. * * @public exported from `@promptbook/utils` */ export declare function capitalize(word: string): string;