import * as z from "zod/v4-mini"; export type ListApiKeysRequest = { /** * Limit */ limit?: number | undefined; /** * Offset */ offset?: number | undefined; /** * Status (published/archived) */ status?: string | undefined; }; /** @internal */ export type ListApiKeysRequest$Outbound = { limit?: number | undefined; offset?: number | undefined; status?: string | undefined; }; /** @internal */ export declare const ListApiKeysRequest$outboundSchema: z.ZodMiniType; export declare function listApiKeysRequestToJSON(listApiKeysRequest: ListApiKeysRequest): string; //# sourceMappingURL=list-api-keys-op.d.ts.map