import type { ChannelDraft, ChannelRoutingRule } from './types.js'; export interface ChannelSyncTables { readonly routes: ChannelRoutingRule[]; readonly drafts: ChannelDraft[]; } export declare class ChannelSyncStore { private readonly store; constructor(path: string); load(): Promise; save(tables: ChannelSyncTables): Promise; } //# sourceMappingURL=store.d.ts.map