import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Component } from "./Component"; import { DeviceAttributes } from "./DeviceAttributes"; import { DeviceStatus } from "./DeviceStatus"; export declare const Device: core.serialization.ObjectSchema; export declare namespace Device { interface Raw { id?: string | null; attributes: DeviceAttributes.Raw; components?: (Component.Raw[] | null | undefined) | null; status?: DeviceStatus.Raw | null; } }