export interface RemoveParticipantRequestHeaders { "x-user-key": string; } export interface RemoveParticipantRequestQuery { } export interface RemoveParticipantRequestParams { id: string; userId: string; } export interface RemoveParticipantRequestBody { } export type RemoveParticipantInput = RemoveParticipantRequestBody & RemoveParticipantRequestHeaders & RemoveParticipantRequestQuery & RemoveParticipantRequestParams; export type RemoveParticipantRequest = { headers: RemoveParticipantRequestHeaders; query: RemoveParticipantRequestQuery; params: RemoveParticipantRequestParams; body: RemoveParticipantRequestBody; }; export declare const parseReq: (input: RemoveParticipantInput) => RemoveParticipantRequest & { path: string; }; export interface RemoveParticipantResponse { }