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