/** * When handling data from documents, we can look through: * string, * string collections, * or collections of objects (recursively) with string or a string collection leaf. * * This function converts any of those data sources to the same format. * @param value */ export declare function flatValue(value: unknown): unknown[];