import { PropType } from 'vue'; declare const componentSize: readonly ["normal", "small", "large"]; type ComponentSize = typeof componentSize[number]; declare const sizeProp: { type: PropType; default: string; validator: (value: ComponentSize) => boolean; }; export { sizeProp, };