import { Element } from '../element'; export declare const RecordStatus: { readonly OPEN: "record_open"; readonly IN_PROGRESS: "record_in_progress"; readonly CLOSED: "record_closed"; readonly INCOMPLETE: "record_incomplete"; readonly FAILED: "record_failed"; readonly PASSED: "record_passed"; readonly PASSED_WITH_ISSUES: "record_passed_with_issues"; }; export type RecordStatusValue = (typeof RecordStatus)[keyof typeof RecordStatus]; export declare class Record extends Element { constructor(...args: any); static get TYPE(): string; static get ATTRIBUTES(): { COORDINATES: string; CHECKLIST_ATE: string; ORDER: string; REQUEST_ATE: string; ELEMENTS: string; FILES: string; STATUS: string; RECORD_ACTION: string; RECORD_DESCRIPTION: string; IS_INCOMPLETE: string; ELEMENT_NAME: string; ARCHIVED: string; ELEMENT_PARENT: string; }; get status(): RecordStatusValue | undefined; }