import { OnInit, Injector } from '@angular/core'; import { ViewBackgroundData } from '../../../../view-data/view/background/view-background.data'; import { ViewBackgroundFillType } from '../../../../view-data/view/background/view-background-fill-type'; import { GraphSettingData } from '../../../../view-data/shared/graph/graph-setting.data'; import { ConfigureComponentBase } from '../../../../../shared/configure-component-base'; import { DefaultGraphSettings } from '../../../core/settings/graph/default-graph-settings'; export declare class ViewBackgroundSettingsComponent extends ConfigureComponentBase implements OnInit { private defaultGraphId; FillType: typeof ViewBackgroundFillType; data: ViewBackgroundData; configureId: number; private _fillType; fillType: ViewBackgroundFillType; private _solidColor; solidColor: string; private _imageId; imageId: string; private _graphSetting; readonly graphSetting: GraphSettingData; constructor(injector: Injector, defaultGraphSettings: DefaultGraphSettings); ngOnInit(): void; setSolidColor(color: string): void; }