import { Module } from 'vuex'; export interface FlagName { creditInstitution?: string | null; flagName?: string | null; effectiveDate?: string | null; expiredDate?: string | null; flagOwner?: string | null; requiresYearTerm?: string | null; requiresValue?: string | null; storedValue?: string | null; description?: string | null; contactInformation?: string | null; dateTimeUpdated?: string | null; updatedById?: string | null; } export interface FlagNamesState { loading: boolean; list: FlagName[]; } export declare type FlagNamesModule = Module;