/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ThemeColor } from './ThemeColor'; /** * * @export * @interface BackgroundOptions */ export interface BackgroundOptions { /** * * @type {ThemeColor} * @memberof BackgroundOptions */ themeColor?: ThemeColor; } /** * Check if a given object implements the BackgroundOptions interface. */ export declare function instanceOfBackgroundOptions(value: object): value is BackgroundOptions; export declare function BackgroundOptionsFromJSON(json: any): BackgroundOptions; export declare function BackgroundOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): BackgroundOptions; export declare function BackgroundOptionsToJSON(json: any): BackgroundOptions; export declare function BackgroundOptionsToJSONTyped(value?: BackgroundOptions | null, ignoreDiscriminator?: boolean): any;