export declare function isSecretRefShape(value: Record): value is Record & { source: string; id: string; }; export declare function redactSecretRefId(params: { value: Record & { source: string; id: string; }; values: string[]; redactedSentinel: string; isEnvVarPlaceholder: (value: string) => boolean; }): Record;