import { ComponentType, ReactNode } from 'react'; export declare const createIconChildUtils: (iconComponent: ComponentType) => { hasIconChild: (children: ReactNode) => boolean; extractIconChild: (children: ReactNode) => { node: ReactNode; remaining: ReactNode; }; };