import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import { IHTMLDivElementIsolate } from '../interfaces/isolate'; export declare const getState: (instance: IHTMLDivElementIsolate) => IHTMLDivElementIsolateProperties, setState: (instance: IHTMLDivElementIsolate, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export default class HTMLDivElementIsolate implements IHTMLDivElementIsolate { get align(): Promise; } export interface IHTMLDivElementIsolateProperties { awaitedPath: AwaitedPath; awaitedOptions: any; readonly align?: Promise; } export declare const HTMLDivElementIsolatePropertyKeys: string[]; export declare const HTMLDivElementIsolateConstantKeys: never[];