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