import { AxiosError } from 'axios'; import OrderappClientApi from './index'; export default class AuthApi { api: OrderappClientApi; constructor(api: OrderappClientApi); sanitizeError(error: AxiosError): AxiosError; scopeLogin(merchantUsername: string, username: string, password: string): Promise; register(payload?: string, hash?: string, client?: string): Promise; refresh(token: string): Promise; createCustomer(): Promise<{ id: string; }>; } //# sourceMappingURL=Auth.d.ts.map