export * from "./base64"; export * as Mime from "./Mime"; /** * Substituição para console.assert, lança um erro se a condição não for atendida. * @param condition Condição 'truthy' * @param error Mensagem de erro opcional */ export declare function assert(condition: any, error?: string): void; export declare function pathValueToObject(dataPath: string, currentPath: string, value: any): typeof value; export declare function removeNulls(obj: any): any; export declare function joinObjects(obj1: any, ...objs: any[]): any; export declare function replaceUndefined(obj: any): any; export declare function sanitizeEmailPrefix(email: string): string; export declare const getExtension: (filename: string) => string; export declare const isDate: (value: any) => value is Date; type AllowEventLoopCallback = (value: V, key: K) => boolean | void | Promise; export declare function allowEventLoop(items: Array, callback: AllowEventLoopCallback, options?: { length_cycles?: number; }): Promise; export declare function allowEventLoop(items: Record, callback: AllowEventLoopCallback, options?: { length_cycles?: number; }): Promise; //# sourceMappingURL=index.d.ts.map