import type { FormikErrors, FormikProps } from 'formik'; import React from 'react'; import type { IProject } from '../../domain'; import type { IWizardPageComponent } from '../../modal'; export interface IApplicationsProps { formik: FormikProps; allApplications: string[]; } export declare class Applications extends React.Component implements IWizardPageComponent { validate(project: IProject): FormikErrors; componentDidUpdate(prevProps: IApplicationsProps): void; render(): JSX.Element; }