import { type SmsControlCommand } from "./commands.js"; import type { SmsPolicyRecord, SmsPolicyStore } from "./policyStore.js"; export type SmsControlResolution = { handled: false; passThroughText: string; policy: SmsPolicyRecord; } | { handled: true; command: SmsControlCommand; responseText: string; policy: SmsPolicyRecord; }; export declare function applySmsControlCommand(params: { store: SmsPolicyStore; target: string; text: string; nowMs?: number; }): SmsControlResolution;