import type { BotActivity } from './teams.types';
export declare class TeamsWebhookController {
    handle(auth: string | undefined, activity: BotActivity): Promise<{
        ok: boolean;
        pending?: string;
    }>;
}
