import { KMsgError, type ProviderRequestContext, type Result } from "@k-msg/core";
export declare function requestAligo(params: {
    host: string;
    endpoint: string;
    data: Record<string, unknown>;
    providerId: string;
    context?: ProviderRequestContext;
}): Promise<Record<string, unknown>>;
export declare function ensureAligoKakaoOk(params: {
    providerId: string;
    response: Record<string, unknown>;
    fallbackMessage: string;
}): Result<void, KMsgError>;
