import * as datazone from "@distilled.cloud/aws/datazone"; import * as Effect from "effect/Effect"; import * as Redacted from "effect/Redacted"; /** * Unwrap a DataZone `SensitiveString` (decoded as `Redacted`) to its plain * string value. `String(redacted)` would yield `""`, not the value. */ export declare const unredact: (value: string | Redacted.Redacted) => string; /** * Coerce a DataZone wire tag map (values may be `undefined` on the wire) into * a plain `Record`. */ export declare const toTagRecord: (tags: { [key: string]: string | undefined; } | undefined) => Record; /** * Sync tags on a DataZone resource by ARN: diff the OBSERVED cloud tags * against the desired set and apply only the delta. */ export declare const syncDataZoneTags: (resourceArn: string, observedTags: Record, desiredTags: Record) => Effect.Effect; //# sourceMappingURL=internal.d.ts.map