import { Background } from '@airgram-dev/core'; /** The selected background has changed */ export declare class UpdateSelectedBackgroundBaseModel { _: 'updateSelectedBackground'; /** True, if background for dark theme has changed */ forDarkTheme: boolean; /** The new selected background; may be null */ background?: Background; }