import { AgencyPreferencesCamel } from '../models'; import { DefaultThemeSettings } from '../state'; import { SerializableAgency } from '../serializers'; export type AppState = { agency: SerializableAgency | null; themePreferences: AgencyPreferencesCamel | null; themeSettings: DefaultThemeSettings | null; }; declare const AppContext: import("react").Context; export default AppContext; //# sourceMappingURL=app-context.d.ts.map