import type { ImageColor } from './ImageColor';
export interface UserControls {
    artisticLevel?: number;
    backgroundColor?: ImageColor;
    colors?: Array<ImageColor>;
    noText?: boolean;
}
export declare function instanceOfUserControls(value: object): value is UserControls;
export declare function UserControlsFromJSON(json: any): UserControls;
export declare function UserControlsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserControls;
export declare function UserControlsToJSON(json: any): UserControls;
export declare function UserControlsToJSONTyped(value?: UserControls | null, ignoreDiscriminator?: boolean): any;
