import type { ExistingLegalEntity } from '../../core/models/api/legal-entity';
import { type IntroductionScreen } from '../../components/Shared/Introduction/types';
import { type TaskType } from '../../stores/globalStore/taskTypes';
interface UseIntroductionScreensProps {
    legalEntity: ExistingLegalEntity;
    tasks: TaskType[];
}
export declare const useIntroductionScreens: ({ legalEntity, tasks }: UseIntroductionScreensProps) => IntroductionScreen[] | undefined;
export {};
