export interface Item { label?: string; value?: Value; meta?: any; } export declare class BaseUtil { static sleep(time: number): Promise; static getRandomNumber(n: number): string; static generateOrderNo(): string; static moduleToPath(module: any): string; static getDeletedIds({ repository, ids }: { repository: any; ids: any; }): Promise; static generateUniqueCode(length?: number): string; static getItem(items: Item[], value: string | number): Item; }