import type { Adapter } from "@onebots/core"; import type { ControlVerificationCommand } from "@onebots/core/control"; export type GatewayVerificationCommand = ControlVerificationCommand; /** 不访问客户端 getter/Proxy,也不把答案保存在调用方可变对象上。 */ export declare function parseGatewayVerificationCommand(input: unknown): GatewayVerificationCommand | undefined; export declare function isGatewayVerificationCommand(value: unknown): value is GatewayVerificationCommand; export declare function permitsVerificationInput(request: Adapter.VerificationRequest, command: GatewayVerificationCommand): boolean; //# sourceMappingURL=verification-command.d.ts.map