import { RequestOptionsFactory } from '@wix/sdk-types'; /** * Retrieves a list of up to 100 tickets. * * */ export declare function listTickets(payload: object): RequestOptionsFactory; /** Retrieves a ticket by the unique ticket number. */ export declare function getTicket(payload: object): RequestOptionsFactory; /** Checks in 1 or more tickets. */ export declare function checkInTicket(payload: object): RequestOptionsFactory; /** Deletes check-ins for 1 or more tickets. */ export declare function deleteTicketCheckIn(payload: object): RequestOptionsFactory; /** Updates a ticket. */ export declare function updateTicket(payload: object): RequestOptionsFactory; /** Archives multiple tickets. */ export declare function bulkUpdateTickets(payload: object): RequestOptionsFactory;