import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ShortcutsPaginationMetadata = { /** * Cursor indicates the start of the next page of results */ cursor?: string | undefined; hasNextPage?: boolean | undefined; totalItemCount?: number | undefined; }; /** @internal */ export declare const ShortcutsPaginationMetadata$inboundSchema: z.ZodType; export declare function shortcutsPaginationMetadataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shortcutspaginationmetadata.d.ts.map