import { ExtractPropTypes } from 'vue'; export declare const inputCpuProps: { modelValue: { type: StringConstructor; default: undefined; }; }; export type InputCpuProps = ExtractPropTypes; export declare const inputCpuEmits: { 'update:modelValue': (value?: string) => void; change: (value?: string) => void; }; export type InputCpuEmits = typeof inputCpuEmits;