import { DDialogInput, DDialogInputOptions, DThemeDialogInput } from "./d-dialog-input"; import { DInputReal, DInputRealOptions } from "./d-input-real"; export interface DDialogInputRealInputOptions extends DInputRealOptions { margin?: number; } export interface DDialogInputRealOptions extends DDialogInputOptions { } export interface DThemeDialogInputReal extends DThemeDialogInput { } export declare class DDialogInputReal = DDialogInputRealOptions> extends DDialogInput { protected newInput(options?: DDialogInputRealInputOptions): DInputReal; protected toInputOptions(options?: DDialogInputRealInputOptions): DDialogInputRealInputOptions | undefined; protected getType(): string; }