import type { InitOptions, ScanOptions } from './types'; type IInitOptions = Omit; export declare const init: (options: IInitOptions) => Promise; export declare const scan: (options: ScanOptions) => Promise; export {};