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