/**
 * Address state
 */
export type AddressState = {
    /**
     * Id
     */
    id: string;
    /**
     * Abbreviation
     */
    abbr?: string;
    /**
     * Name
     */
    label: string;
};
