import { type AppConfig, type AppPlugin } from "../..";
export type SyncConfigOptions = {
    enabled?: boolean;
    includeSecrets?: boolean;
    write: (config: AppConfig) => Promise<void>;
};
export declare function syncConfig({ enabled, includeSecrets, write, }: SyncConfigOptions): AppPlugin;
