/** * Handler for `axm sync`. * * @experimental This API is unstable and may change without notice. */ import * as Effect from "effect/Effect"; import * as Option from "effect/Option"; import type { ExtensionType } from "@agentxm/extension-model/unstable/extensions"; export interface HandleSyncArgs { readonly target?: Option.Option; readonly type?: Option.Option>; readonly preview: boolean; readonly failOnChange?: boolean; } export declare const handleSync: (args: HandleSyncArgs) => Effect.Effect; //# sourceMappingURL=handler.d.ts.map