import { StateType } from '../models'; export declare function mapStateNameToStateType(stateName?: string): { name: string; type: StateType | null; }; export declare function getStateTypeStyles(type: StateType | null): { color: string; background: string; }; export declare function mapStateTypeOrNameToStateName(stateTypeOrName: string): string;