import React from 'react'; /** * Takes in children for a component and looks for a specified component display name. */ export declare function isComponentInChildren(children: React.ReactNode, componentDisplayName: string): boolean; /** * Takes in children for a component and strips out all content besides the first Icon. */ export declare function renderFirstIconOnly(children: React.ReactNode, shouldDisableColor?: boolean): (React.ReactElement> | null)[]; /** * Takes in children for a component and strips out any specified component. */ export declare function renderChildrenIgnoreSpecifiedComponents(children: React.ReactNode, componentsToIgnore: ReadonlyArray): React.ReactNode[]; /** * Takes in children for a component and renders only the specified components. */ export declare function renderChildrenSpecifiedComponents(children: React.ReactNode, componentsToInclude: ReadonlyArray): React.ReactNode[];