import { DInputAndLabel, DInputAndLabelOptions, DThemeInputAndLabel } from "./d-input-and-label"; import { DInputInteger, DInputIntegerOptions, DThemeInputInteger } from "./d-input-integer"; export interface DInputIntegerAndLabelOptions extends DInputAndLabelOptions { } export declare class DInputIntegerAndLabel = DInputIntegerAndLabelOptions> extends DInputAndLabel { protected createInput(options?: DInputIntegerOptions): DInputInteger; }