import { BooleanResponse } from '../..'; /** * Internal */ export interface TwitterBotAuthRequest { state: string; code: string; } export declare type TwitterBotAuthResponse = BooleanResponse; export declare const TwitterBotAuth: import("../common").ProtocolFunction; export interface DevInfoRequest { } export interface DevInfoResponse { ip: string; } export declare const DevInfo: import("../common").ProtocolFunction;