/** * Generates a random ID matching Firestore's auto-generated document ID format. * 20 characters from [A-Za-z0-9], with rejection sampling to avoid modulo bias. * Ported from `@firebase/firestore`'s `AutoId.newId()`. */ export declare const generateDocumentId: () => string;