import type { AccessControl, SensitiveInfoOptions } from '../sensitive-info.nitro'; export declare const DEFAULT_SERVICE = "default"; export declare const DEFAULT_ACCESS_CONTROL: AccessControl; /** * Normalises user supplied options by applying defaults and pruning `undefined` fields. * * Keeping the shape deterministic reduces marshalling work on the native side and makes * memoisation on hot paths cheap (stable JSON fingerprints). */ export declare function normalizeOptions(options?: SensitiveInfoOptions): SensitiveInfoOptions; export declare function normalizeStorageScopeOptions(options?: SensitiveInfoOptions): SensitiveInfoOptions; export declare function normalizePromptedReadOptions(options?: SensitiveInfoOptions): SensitiveInfoOptions; //# sourceMappingURL=options.d.ts.map