export declare class Uri {
    dataRate: number;
    channel: number;
    /**
     * URI class for representing the URI's to connect to a Crazyflie
     */
    constructor(dataRate: number, channel: number);
    toString(): string;
}
