import './_introduction.component.scss';
import type { JSX } from 'preact';
import type { ExistingLegalEntity } from '../../core/models/api/legal-entity';
import type { TaskTypes } from '../TaskList/types';
export interface IntroductionProps {
    legalEntity: ExistingLegalEntity;
    onExitIntroduction: () => void;
    tasks: TaskTypes[];
}
export declare const Introduction: ({ legalEntity, onExitIntroduction, tasks, }: IntroductionProps) => JSX.Element | null;
