import { StateType } from '../models/StateType';
export type StateBadgeState = {
    name: string;
    type: StateType | null | undefined;
};
