import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import { LibraryOut } from "./libraryout.js";
export type ListLibraryOut = {
    data: Array<LibraryOut>;
};
/** @internal */
export declare const ListLibraryOut$inboundSchema: z.ZodType<ListLibraryOut, z.ZodTypeDef, unknown>;
export declare function listLibraryOutFromJSON(jsonString: string): SafeParseResult<ListLibraryOut, SDKValidationError>;
//# sourceMappingURL=listlibraryout.d.ts.map