import { CSSProperties, VNodeChild } from 'vue'; import { VueTypeValidableDef, VueTypesInterface } from 'vue-types'; export type VueNode = VNodeChild | JSX.Element; type PropTypes = VueTypesInterface & { readonly style: VueTypeValidableDef; readonly VNodeChild: VueTypeValidableDef; }; declare const newPropTypes: PropTypes; declare class propTypes extends newPropTypes { static get style(): VueTypeValidableDef>; static get VNodeChild(): VueTypeValidableDef>; } export { propTypes };