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