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