import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import { IHTMLLegendElementIsolate } from '../interfaces/isolate'; import { IHTMLFormElement } from '../interfaces/official'; export declare const getState: (instance: IHTMLLegendElementIsolate) => IHTMLLegendElementIsolateProperties, setState: (instance: IHTMLLegendElementIsolate, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export default class HTMLLegendElementIsolate implements IHTMLLegendElementIsolate { get align(): Promise; get form(): IHTMLFormElement; } export interface IHTMLLegendElementIsolateProperties { awaitedPath: AwaitedPath; awaitedOptions: any; readonly align?: Promise; readonly form?: IHTMLFormElement; } export declare const HTMLLegendElementIsolatePropertyKeys: string[]; export declare const HTMLLegendElementIsolateConstantKeys: never[];