import type { InteractionHandlerDeps, ParsedBlockActionsPayload } from "#public/channels/slack/interactions.js";
export declare function updateAnsweredHitlCard(interaction: ParsedBlockActionsPayload, deps: InteractionHandlerDeps): Promise<void>;
export declare function updateAnsweredFreeformCard(input: {
    readonly channelId: string;
    readonly messageTs: string;
    readonly answerLabel: string;
    readonly userId?: string;
    readonly installationTeamId?: string;
    readonly deps: InteractionHandlerDeps;
}): Promise<void>;
