import { AxiosResponse } from 'axios'; export declare const onairosApi: { get(url: string): Promise>; post(url: string, data: any): Promise>; validateCredentials(username: string): Promise; getUserProfile(token: string): Promise; }; export declare const sendEmailVerificationCode: (email: string) => Promise<{ success: boolean; message: any; }>; export declare const confirmEmailVerificationCode: (email: string, code: string) => Promise<{ success: boolean; message: any; }>; //# sourceMappingURL=index.d.ts.map