import { ReportsAPI } from './endpoints/Reports';
import { TogglAPI } from './endpoints/Toggl';
import { APIConfig } from './interfaces/APIConfig';
export declare class TogglAid {
    togglAPI: TogglAPI;
    reportsAPI: ReportsAPI;
    constructor(configOpts: APIConfig);
}
