export declare namespace Manage { function auth(props: AuthProps): Promise; interface AuthProps { id: string; secret: string; code: string; } interface AuthData { access_token: string; account_number: string; user: { id: number; name: string; email: string; role_id: number; }; ownerInfo: { email: string; phone: string; city: string; country: string; name: string; company_name: string; }; tariff: { key: string; next_pay_date: string; price: number; }; } interface AuthError { error: number; message: string; field: string; } }