import { IGeoCoordinates, UserInfo } from "../interfaces/interface";
import { CreateTicketInterface } from "../interfaces";
export declare const useTicket: (token: string, userInfo: UserInfo, userId: string, baseUrl: string, geoCoordinates?: IGeoCoordinates | null, lang?: string) => {
    CreateTicket: (values: CreateTicketInterface) => Promise<{
        response: import("axios").AxiosResponse<any, any>;
        newUser: any;
        message: any;
        status: string;
    } | {
        response: any;
        newUser: any;
        message: any;
        status: string;
    }>;
};
