import React from 'react'; import { z as zod } from 'zod'; export declare const options: zod.ZodObject<{ name: zod.ZodString; baseIp: zod.ZodDefault; save: zod.ZodDefault; }, zod.core.$strip>; type Props = { options: zod.infer; }; export default function Create({ options }: Props): React.ReactElement; export {};