import { A_AUTH_AppInteractions_APIProvider } from "../../../global/api-providers/A_AUTH_AppInteractions.api"; import { A_AUTH_APP_INTERACTIONS_TYPES__SignUpOrganizationRequest, A_AUTH_APP_INTERACTIONS_TYPES__SignUpOrganizationResponse, A_AUTH_APP_INTERACTIONS_TYPES__SignUpProfileRequest, A_AUTH_APP_INTERACTIONS_TYPES__SignUpProfileResponse, A_AUTH_APP_INTERACTIONS_TYPES__SignUpRequest, A_AUTH_APP_INTERACTIONS_TYPES__SignUpResponse } from "./A_AUTH_SignUp.types"; import { A_AUTH_ContextClass } from "../../../global/A_AUTH_Context.class"; export declare class A_AUTH_APP_INTERACTIONS__SignUpAPI extends A_AUTH_AppInteractions_APIProvider { protected get baseURL(): string; signUp( /** * The new user to sign up */ newUser: A_AUTH_APP_INTERACTIONS_TYPES__SignUpRequest, /** * The meta object to pass through API call for error handling or response handling */ meta?: M): Promise; signUpProfile( /** * user profile to sign up */ profile: A_AUTH_APP_INTERACTIONS_TYPES__SignUpProfileRequest, /** * The meta object to pass through API call for error handling or response handling */ meta?: M): Promise; signUpOrganization( /** * The organization to sign up */ organization: A_AUTH_APP_INTERACTIONS_TYPES__SignUpOrganizationRequest, /** * The meta object to pass through API call for error handling or response handling */ meta?: M): Promise; }