import type { FunctionComponent } from './FunctionComponent.js'; import { TungstenBaseComponentType } from './Components.jsx'; export type AnyComponentType = TungstenBaseComponentType | FunctionComponent; export declare function AnyComponentTypeIsClassComponentType(Component: AnyComponentType): Component is TungstenBaseComponentType; export declare function AnyComponentTypeIsFunctionComponentType(Component: AnyComponentType): Component is FunctionComponent; //# sourceMappingURL=AnyComponentType.d.ts.map