import { DDialogInput, DDialogInputOptions, DThemeDialogInput } from "./d-dialog-input"; import { DInputBoolean, DInputBooleanOptions } from "./d-input-boolean"; export interface DDialogInputBooleanInputOptions extends DInputBooleanOptions { margin?: number; } export interface DDialogInputBooleanOptions extends DDialogInputOptions { } export interface DThemeDialogInputBoolean extends DThemeDialogInput { } export declare class DDialogInputBoolean = DDialogInputBooleanOptions> extends DDialogInput { protected newInput(options?: DDialogInputBooleanInputOptions): DInputBoolean; protected toInputOptions(options?: DDialogInputBooleanInputOptions): DDialogInputBooleanInputOptions; protected getType(): string; }