import { VueTypeValidableDef, VueTypesInterface } from 'vue-types'; import { CSSProperties, VNodeChild } from 'vue'; export type VueNode = VNodeChild | JSX.Element; type PropTypes = VueTypesInterface & { readonly style: VueTypeValidableDef; readonly VNodeChild: VueTypeValidableDef; }; declare const propTypes: PropTypes; export { propTypes };