import { CSSProperties, VNodeChild } from 'vue'; import { VueTypeValidableDef, VueTypesInterface } from 'vue-types'; import type { PropType } from 'vue'; export declare type VueNode = VNodeChild | JSX.Element; declare type PropTypes = VueTypesInterface & { readonly style: VueTypeValidableDef; readonly VNodeChild: VueTypeValidableDef; }; declare const PropTypes: PropTypes; export declare const definePropType: (val: any) => PropType; export { PropTypes };