import { Uin } from './uin';
import { Log } from './log';
import { System } from './system';
export declare class NuiFederation {
    uin: Uin;
    log: Log;
    system: System;
    constructor(baseUrl: string, clientId: string, clientSecret: string);
}
