import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
/**
 * A URL that references a specific page in the pagination process. This is typically used for navigation
 *
 * @remarks
 * between paginated results.
 */
export type PageLink = {
    /**
     * The URL for the referenced page.
     */
    href: string;
};
/** @internal */
export declare const PageLink$inboundSchema: z.ZodType<PageLink, z.ZodTypeDef, unknown>;
export declare function pageLinkFromJSON(jsonString: string): SafeParseResult<PageLink, SDKValidationError>;
//# sourceMappingURL=pagelink.d.ts.map