import React from 'react'; import { z as zod } from 'zod'; export declare const options: zod.ZodObject<{ plan: zod.ZodString; format: zod.ZodEnum<{ yaml: "yaml"; csv: "csv"; pdf: "pdf"; }>; output: zod.ZodOptional; }, zod.core.$strip>; type Props = { options: zod.infer; }; export default function Export({ options }: Props): React.ReactElement; export {};