type AllowlistConfig = Record; export declare function loadAllowlist(path: string): AllowlistConfig; export declare function checkAllowlist(recipient: string | undefined, asset: string, allowlist: AllowlistConfig): string[]; export {};