import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { DeviceCodeStatus } from "./DeviceCodeStatus"; import { ProductType } from "./ProductType"; export declare const DeviceCode: core.serialization.ObjectSchema; export declare namespace DeviceCode { interface Raw { id?: string | null; name?: (string | null | undefined) | null; code?: string | null; device_id?: string | null; product_type: ProductType.Raw; location_id?: (string | null | undefined) | null; status?: DeviceCodeStatus.Raw | null; pair_by?: string | null; created_at?: string | null; status_changed_at?: string | null; paired_at?: string | null; } }