import { ExtractPropTypes, PropType } from 'vue'; export type InputMemoryUnitProp = 'Ki' | 'Mi' | 'Gi'; export declare const inputMemoryProps: { modelValue: { type: StringConstructor; default: undefined; }; defaultUnit: { type: PropType; default: string; }; fixedUnit: { type: PropType; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; }; export type InputMemoryProps = ExtractPropTypes; export declare const inputMemoryEmits: { 'update:modelValue': (value?: string) => void; change: (value?: string) => void; }; export type InputMemoryEmits = typeof inputMemoryEmits;