import React from 'react'; import { Props } from '../single/types'; type SingleWizardProps = { children?: React.ReactNode; isValidForm: boolean; } & Props; export default function SingleWizard({ asset, children, isValidForm, onCancel, onMetadataSubmit, }: SingleWizardProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SingleWizard.d.ts.map