import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetFoldersFolderIdSharingsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetFoldersFolderIdSharingsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetFoldersFolderIdSharingsInternalServerErrorData; constructor(err: GetFoldersFolderIdSharingsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetFoldersFolderIdSharingsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetFoldersFolderIdSharingsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetFoldersFolderIdSharingsUnauthorizedErrorData; constructor(err: GetFoldersFolderIdSharingsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetFoldersFolderIdSharingsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetFoldersFolderIdSharingsUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=getfoldersfolderidsharings.d.ts.map