import TDApi = require("../index"); declare function saveTokens(access_token: string, refresh_token: string): void; declare function getTokens(): Promise<{ access_token: string; refresh_token: string; }>; declare const helpers: { td: TDApi; company_id: string | undefined; saveTokens: typeof saveTokens; getTokens: typeof getTokens; }; export default helpers;