export declare const createConsole: () => { debug: (...args: any[]) => void; log: (...args: any[]) => void; info: (...args: any[]) => void; warn: (...args: any[]) => void; error: (...args: any[]) => void; }; export declare function getPlatform(): "Shi9" | "Android" | "IOS" | "Node"; export declare function checkArgs(spec: string, functionName: string, ...rest: Array): void; export declare function vConsole(): { log(...args: any[]): void; };