import { ComponentRef, FrameworkDelegate } from '../interface'; export declare const attachComponent: (delegate: FrameworkDelegate, container: Element, component: ComponentRef, cssClasses?: string[], componentProps?: { [key: string]: any; }) => Promise; export declare const detachComponent: (delegate: FrameworkDelegate, element: HTMLElement) => Promise;