import { VNode } from 'intact'; import { ReactNode, Ref as ReactRef } from 'react'; export declare type VNodeAtom = VNode | null | undefined | string | number; export declare function normalize(vNode: ReactNode): VNodeAtom | VNodeAtom[]; export declare function normalizeChildren(vNodes: ReactNode): VNodeAtom | VNodeAtom[]; export declare function normalizeProps

(props: P, events: Record | undefined): P; export declare function normalizeRef(ref: ReactRef): ((i: any) => void) | null;