import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetSearchInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetSearchInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetSearchInternalServerErrorData; constructor(err: GetSearchInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetSearchUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetSearchUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetSearchUnauthorizedErrorData; constructor(err: GetSearchUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type GetSearchBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class GetSearchBadRequestError extends WistiaError { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetSearchBadRequestErrorData; constructor(err: GetSearchBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetSearchInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetSearchUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const GetSearchBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=getsearch.d.ts.map