type LazyLoadedComponent = T & {
componentOnReady: () => Promise;
};
export declare const componentOnReady: (stencilEl: T, callback: (el: T) => unknown) => void;
export declare const hasLazyBuild: (stencilEl: T) => stencilEl is LazyLoadedComponent;
export {};