export interface AppState { count: number; } const appState: AppState = { count: 0 }; export default appState;