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