import type { AllowlistMatch } from "../channels/allowlist-match.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 normalizeAllowFromWithStore: (params: { allowFrom?: Array; storeAllowFrom?: string[]; }) => NormalizedAllowFrom; export declare const firstDefined: (...values: Array) => (T & ({} | null)) | undefined; export declare const isSenderAllowed: (params: { allow: NormalizedAllowFrom; senderId?: string; senderUsername?: string; }) => boolean; export declare const resolveSenderAllowMatch: (params: { allow: NormalizedAllowFrom; senderId?: string; senderUsername?: string; }) => AllowFromMatch;