/**
 * Gets only the valid children of a component,
 * and ignores any nullish or falsy child.
 *
 * @param children the children
 */
export declare function getValidChildren(children: React.ReactNode): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>[];
