import React from 'react'; import zod from 'zod'; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; file: zod.ZodOptional; }, zod.z.core.$strip>; type Props = { readonly options: zod.infer; }; export default function Export({ options: { apiKey, file } }: Props): React.JSX.Element; export {};