import { z } from 'zod'; export declare const BrowseVariablesSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ per_page: z.ZodDefault>; page: z.ZodOptional; action: z.ZodLiteral<"list">; namespace: z.ZodString; }, z.core.$strip>, z.ZodObject<{ action: z.ZodLiteral<"get">; namespace: z.ZodString; key: z.ZodString; filter: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>], "action">; export type BrowseVariablesInput = z.infer;