import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ChannelStatus } from "./ChannelStatus"; import { Reference } from "./Reference"; export declare const Channel: core.serialization.ObjectSchema; export declare namespace Channel { interface Raw { id?: string | null; merchant_id?: string | null; name?: (string | null | undefined) | null; version?: number | null; reference?: Reference.Raw | null; status?: ChannelStatus.Raw | null; created_at?: string | null; updated_at?: string | null; } }