import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "../command/icommand"; import { ACTION } from "../command/action"; import { baseParamsType } from "../command/baseparams"; import { partnerIdKeyType, usrKeyType } from "../channel"; export declare class CMDP_B2BQUERYUSER implements ICOMMAND { action: ACTION; params: baseParamsType & usrKeyType & partnerIdKeyType & { queryId: string; messageKey?: string; caption?: string; text: string; btn0: string; btn1: string; btndef?: "btn0" | "btn1" | string; timeout?: string; sound?: "user_entered" | string; imgSrc?: string; }; } export declare class CMDP_B2BQUERYUSER_RESPONSE extends CMDP_B2BQUERYUSER implements IRESPONSE { result: RESULT; /** unused */ commands: ICOMMAND[]; /** unused */ values: IKeyMaybeValue; } export declare class CMDC_B2BQUERYANSWER implements ICOMMAND { action: ACTION; params: usrKeyType & partnerIdKeyType & { queryId: string; btn: string; }; }