import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import { IHTMLTableSectionElementIsolate } from '../interfaces/isolate'; import { ISuperHTMLCollection } from '../interfaces/super'; export declare const getState: (instance: IHTMLTableSectionElementIsolate) => IHTMLTableSectionElementIsolateProperties, setState: (instance: IHTMLTableSectionElementIsolate, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export default class HTMLTableSectionElementIsolate implements IHTMLTableSectionElementIsolate { get align(): Promise; get ch(): Promise; get chOff(): Promise; get rows(): Promise | ISuperHTMLCollection | Promise; get vAlign(): Promise; } export interface IHTMLTableSectionElementIsolateProperties { awaitedPath: AwaitedPath; awaitedOptions: any; readonly align?: Promise; readonly ch?: Promise; readonly chOff?: Promise; readonly rows?: Promise | ISuperHTMLCollection | Promise; readonly vAlign?: Promise; } export declare const HTMLTableSectionElementIsolatePropertyKeys: string[]; export declare const HTMLTableSectionElementIsolateConstantKeys: never[];