import { Module } from 'vuex'; export interface FlagNameValue { creditInstitution?: string | null; flagName?: string | null; flagValue?: string | null; holdType?: string | null; effectiveDate?: string | null; expiredDate?: string | null; description?: string | null; dateTimeUpdated?: string | null; updatedById?: string | null; } export interface FlagNameValuesState { loading: boolean; list: FlagNameValue[]; } export declare type FlagNameValuesModule = Module;