type TrustEntry = { readonly key: string; readonly hash: string; }; declare const removeTrustBlocks: (toml: string, keys: readonly string[]) => string; declare const upsertTrustBlocks: (toml: string, entries: readonly TrustEntry[]) => string; export { removeTrustBlocks, upsertTrustBlocks };