import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Channel } from "./Channel"; import { Error_ } from "./Error_"; export declare const ListChannelsResponse: core.serialization.ObjectSchema; export declare namespace ListChannelsResponse { interface Raw { errors?: Error_.Raw[] | null; channels?: Channel.Raw[] | null; cursor?: string | null; } }