import type { SyncClient } from '../types.js'; export interface RuntimeSyncOptions { definitions: string; allowDestructive?: boolean; scratchSchema?: RuntimeSyncScratchSchema; } export type RuntimeSyncScratchSchema = 'scratch-db' | 'prefix'; export declare function sync(client: SyncClient, input: RuntimeSyncOptions): void;