import type { ComputedRef, CSSProperties } from 'vue'; import type { ClassListName } from '../../_interface'; import type { DkInputNumberProps } from '../../dkinputNumber/src/props'; interface inputNumberType { classList: ComputedRef; styleList: ComputedRef; } export declare const getInputNumber: (props: DkInputNumberProps) => inputNumberType; export {};