/** Helper type to ensure that the given string starts with an lowercase letter. */ export type StartsWithLowercase = S extends string ? Extract> : never; //# sourceMappingURL=StartsWithLowercase.d.ts.map