import React, { ReactNode } from 'react'; export declare const getDisplayName: (Comp: any) => any; export declare const typeOfComponent: (component: any, customTypeKey?: string) => string; export declare const toArray: (children: T) => TC[]; export declare const findAllByType: (children: React.ReactNode, type: TC | TC[]) => T[]; export declare const findChildByType: (children: React.ReactNode, type: TC) => T;