import AppSectionState from 'App/State/AppSectionState'; import Field, { FieldSelectOption } from 'typings/Field'; export interface ProviderOptions { fields?: Field[]; } interface ProviderOptionsDevice { id: string; name: string; } interface ProviderOptionsAppState { devices: AppSectionState; servers: AppSectionState>; newznabCategories: AppSectionState>; getProfiles: AppSectionState>; getTags: AppSectionState>; getRootFolders: AppSectionState>; } export default ProviderOptionsAppState;