///
import { Jobs, Apps, Systems } from '@tapis/tapis-typescript';
export type JobLauncherProviderParams = {
job: Partial;
app: Apps.TapisApp;
systems: Array;
};
export type JobStep = {
id: string;
name: string;
render: React.ReactNode;
summary: React.ReactNode;
generateInitialValues: (props: JobLauncherProviderParams) => Partial;
validateThunk?: (props: JobLauncherProviderParams) => (values: Partial) => any;
validationSchema: any;
};
export { default } from './JobLauncherWizard';