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