import { ComponentType, ReactNode } from 'react'; import { LGGlyph } from './types'; type ExtendedComponentType = (ComponentType & { [key: string]: any; }); /** * Helper type to check if element is a LeafyGreen UI Glyph * @internal */ declare function isComponentGlyph(node: ReactNode): node is LGGlyph.Element; declare function isComponentGlyph(component: ExtendedComponentType): component is LGGlyph.Component; export { isComponentGlyph }; //# sourceMappingURL=isComponentGlyph.d.ts.map