import { Receiver } from '../classes/receiver'; /** The raw receiver */ export declare let receiver: Receiver; /** * Initialize the reciever * @param port The port the receiver'll listen to * @param secret CQHTTP's secret */ export declare function init(port: number, secret?: string): void; /** Let the receiver start listening */ export declare function start(): void;