/** * Generates customizable and optionally verbose Unique Custom IDs (UCIDs). * @param {Object} [options={}] Configuration options * @returns {string|Object|Array} */ declare function ucidGenerateId(options?: {}): string | void | (string | undefined)[] | { octets: number; octetLength: number; octetFormat: string; uppercase: boolean; lowercase: boolean; numbers: boolean; symbols: boolean; includeOnly: string | null; octetSeparator: string; timestamp: string | null; timestampFormat: string | null; template: string | null; prefix: string; suffix: string; instances: number; verbose: boolean; customize: undefined | null; condition: undefined | null; ucid: string; } | { octets: number; octetLength: number; octetFormat: string; uppercase: boolean; lowercase: boolean; numbers: boolean; symbols: boolean; includeOnly: string | null; octetSeparator: string; timestamp: string | null; timestampFormat: string | null; template: string | null; prefix: string; suffix: string; instances: number; verbose: boolean; customize: undefined | null; condition: undefined | null; ucid: string; }[]; export { ucidGenerateId as default, ucidGenerateId };