import type { AllowlistMatch } from "../channels/allowlist-match.js"; import { firstDefined } from "../channels/allow-from.js"; export type NormalizedAllowFrom = { entries: string[]; hasWildcard: boolean; hasEntries: boolean; invalidEntries: string[]; }; export type AllowFromMatch = AllowlistMatch<"wildcard" | "id">; export declare const normalizeAllowFrom: (list?: Array) => NormalizedAllowFrom; export declare const normalizeDmAllowFromWithStore: (params: { allowFrom?: Array; storeAllowFrom?: string[]; dmPolicy?: string; }) => NormalizedAllowFrom; export declare const isSenderAllowed: (params: { allow: NormalizedAllowFrom; senderId?: string; senderUsername?: string; }) => boolean; export { firstDefined }; export declare const resolveSenderAllowMatch: (params: { allow: NormalizedAllowFrom; senderId?: string; senderUsername?: string; }) => AllowFromMatch;