/** Posts one framework callback payload with the shared callback transport policy. */
export declare function postSessionCallbackRequest(input: {
    readonly body: unknown;
    /** Set false when the caller owns failure logging, such as best-effort activity. */
    readonly logFailures?: boolean;
    readonly timeoutMs?: number;
    readonly url: string;
}): Promise<Response>;
