import { IDOMRectReadOnly } from '../../base/interfaces/official'; import { IDOMRectReadOnlyProperties } from '../../base/official-klasses/DOMRectReadOnly'; export declare const getState: (instance: IDOMRectReadOnly) => IDOMRectReadOnlyProperties, setState: (instance: IDOMRectReadOnly, properties: Partial) => void; declare const DOMRectReadOnlyBaseClass: { new (_x?: number | undefined, _y?: number | undefined, _width?: number | undefined, _height?: number | undefined): { readonly bottom: Promise; readonly height: Promise; readonly left: Promise; readonly right: Promise; readonly top: Promise; readonly width: Promise; readonly x: Promise; readonly y: Promise; toJSON(): Promise; }; }; export default class DOMRectReadOnly extends DOMRectReadOnlyBaseClass implements IDOMRectReadOnly { } export {};