import type yargs from 'yargs-parser'; import type { LogOptions } from '../../core/logger/core.js'; interface SyncOptions { flags: yargs.Arguments; logging: LogOptions; } export declare function sync({ flags, logging }: SyncOptions): Promise; export {};