1export type NativeLog = (tagPrefix: string, toLog: string) => void
2export type NativeLogDump = (tagPrefix: string) => Promise<Array<string>>
3
4declare const log: NativeLog
5declare const dump: NativeLogDump
6declare const flush: () => void
7
8export {log, dump, flush}
9