import type { ExistingLegalEntity } from '../core/models/api/legal-entity'; import { type LegalEntityType } from '../core/models/api/legal-entity-type'; export interface UseLegalEntityTypeProps { legalEntity: ExistingLegalEntity; } export declare const useLegalEntityType: ({ legalEntity, }: UseLegalEntityTypeProps) => LegalEntityType | undefined;