import { TRequestConfigs } from '../../configs'; type TPayload = { username: string; password: string; }; declare function method(requestConfigs: TRequestConfigs, payload: TPayload): Promise<{ token: string; userId: string; userCode: string; username: string; teamPro: boolean; proStartDate: string; proEndDate: string; subscribeType: string; subscribeFreq: string; needSubscribe: boolean; freq: string; inboxId: string; teamUser: boolean; activeTeamUser: boolean; freeTrial: boolean; pro: boolean; ds: boolean; }>; export declare const apiMethod: { method: typeof method; route: "/user/signon?wc=true&remember=true"; }; export {};