import { DDialogInput, DDialogInputOptions, DThemeDialogInput } from "./d-dialog-input"; import { DInputInteger, DInputIntegerOptions } from "./d-input-integer"; export interface DDialogInputIntegerInputOptions extends DInputIntegerOptions { margin?: number; } export interface DDialogInputIntegerOptions extends DDialogInputOptions { } export interface DThemeDialogInputInteger extends DThemeDialogInput { } export declare class DDialogInputInteger = DDialogInputIntegerOptions> extends DDialogInput { protected newInput(options?: DDialogInputIntegerInputOptions): DInputInteger; protected toInputOptions(options?: DDialogInputIntegerInputOptions): DDialogInputIntegerInputOptions; protected getType(): string; }