import { RequestAPI } from 'request'; type TConfigs = { apiUrl: string; browserAgent: string; validateSchema: boolean; xDevice: string; }; export type TAuthData = { username: string; password: string; }; export type TTicktickConfigs = TAuthData & { customConfigs?: Partial; }; export type TRequestConfigs = { request: RequestAPI; } & TConfigs; export declare const INITIAL_CONFIGS: TConfigs; export {};