export const elementName: "frc-field-object"; export namespace elementConfig { namespace dashboard { const displayName: string; const topLevel: boolean; namespace layout { namespace resizable { const horizontal: boolean; const vertical: boolean; } const movable: boolean; } } namespace properties { namespace x { const type: NumberConstructor; } namespace y { const type_1: NumberConstructor; export { type_1 as type }; } namespace rot { const type_2: NumberConstructor; export { type_2 as type }; } namespace width { const type_3: NumberConstructor; export { type_3 as type }; export const defaultValue: number; } namespace height { const type_4: NumberConstructor; export { type_4 as type }; const defaultValue_1: number; export { defaultValue_1 as defaultValue }; } namespace unit { const type_5: StringConstructor; export { type_5 as type }; const defaultValue_2: string; export { defaultValue_2 as defaultValue }; export namespace input { const type_6: string; export { type_6 as type }; export function getOptions(): string[]; export function getOptions(): string[]; export const allowCustomValues: boolean; } } namespace image { const type_7: StringConstructor; export { type_7 as type }; } namespace draw { const type_8: StringConstructor; export { type_8 as type }; } } } export default class FieldObject extends LitElement { static __IS_FIELD_OBJECT__: boolean; static properties: { x: { type: NumberConstructor; }; y: { type: NumberConstructor; }; rot: { type: NumberConstructor; }; width: { type: NumberConstructor; defaultValue: number; }; height: { type: NumberConstructor; defaultValue: number; }; unit: { type: StringConstructor; defaultValue: string; input: { type: string; getOptions(): string[]; allowCustomValues: boolean; }; }; image: { type: StringConstructor; }; draw: { type: StringConstructor; }; }; static styles: import("lit").CSSResult; x: number; y: number; rot: number; width: number; height: number; unit: string; image: string; draw: string; drawFunction: Function; updated(changedProperties: any): void; resized(): void; render(): import("lit").TemplateResult<1>; renderDrawing(args: any): void; } import { LitElement } from "lit/node_modules/lit-element/lit-element";