export interface ImageColor { rgb?: Array; std?: Array; weight?: number; } export declare function instanceOfImageColor(value: object): value is ImageColor; export declare function ImageColorFromJSON(json: any): ImageColor; export declare function ImageColorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageColor; export declare function ImageColorToJSON(json: any): ImageColor; export declare function ImageColorToJSONTyped(value?: ImageColor | null, ignoreDiscriminator?: boolean): any;