import { Module } from 'vuex'; export interface DomainValue { domainName?: string | null; domainValue?: string | null; activeStatus?: string | null; description?: string | null; desc15?: string | null; dateTimeUpdated?: string | null; updatedById?: string | null; } export interface DomainValuesState { loading: boolean; list: DomainValue[]; } export declare type DomainValuesModule = Module;