export interface DebugSyncOptions {
    targetDir: string;
    sdkDir?: string;
    watch?: string | boolean;
}
export declare const debugSync: (opts: DebugSyncOptions) => Promise<void>;
