import type { DecisionMakerType } from '../../core/models/api/decision-maker-type';
import type { CountryCode } from '../../core/models/country-code';
import type { TrustMemberGuidanceLabel } from '../../core/models/trust';
import type { TaskTypes } from '../TaskList/types';
export type EntityStatus = 'empty' | 'satisfied';
export interface EntityGuidanceStatusProps {
    country: CountryCode;
    currentTask: TaskTypes;
    entityLabel: TrustMemberGuidanceLabel | DecisionMakerType;
    status: EntityStatus;
}
export interface EntityStatusProps {
    status: EntityStatus;
}
