import { PropertyTitledShade } from "../common/props"; import { Atom } from "./atom"; import { IAtoms, IInputBackground } from "../interfaces"; import { Shade } from "../common/shade"; export interface InputBackgroundVariables { inputDefault: Shade; onInputDefault: Shade; dmInputDefault: Shade; } /** * The input backbround atom. * @category Atoms */ export declare class InputBackground extends Atom implements IInputBackground { /** The overlay shade property */ readonly overlayColor: PropertyTitledShade; private readonly whiteBackground; constructor(atoms: IAtoms); private getSelectables; getVariables(): InputBackgroundVariables | undefined; private getDefaultColorTheme; deserialize(obj: any): void; serialize(): any; }