import type { DesiredStateGraph, SecretSource, SerializedValue } from "./types.js"; export declare const secretRef: (value: SerializedValue | undefined) => { readonly source: SecretSource; readonly key: string; } | undefined; export interface SecretUsage { readonly key: string; readonly source: SecretSource; readonly requiredBy: readonly { readonly id: string; readonly type: string; }[]; } export declare const collectSecretUsage: (graph: DesiredStateGraph) => SecretUsage[]; //# sourceMappingURL=secrets.d.ts.map