import { type AppPlugin } from "../..";
export type SyncSecretsOptions = {
    enabled?: boolean;
    includeFirstBoot?: boolean;
    write: (secrets: Record<string, any>) => Promise<void>;
};
export declare function syncSecrets({ enabled, includeFirstBoot, write, }: SyncSecretsOptions): AppPlugin;
