import * as z from "zod/v3"; export type ChannelCredentialsDto = { /** * The URL for the webhook associated with the channel. */ webhookUrl?: string | undefined; /** * An array of device tokens for push notifications. */ deviceTokens?: Array | undefined; }; /** @internal */ export type ChannelCredentialsDto$Outbound = { webhookUrl?: string | undefined; deviceTokens?: Array | undefined; }; /** @internal */ export declare const ChannelCredentialsDto$outboundSchema: z.ZodType; export declare function channelCredentialsDtoToJSON(channelCredentialsDto: ChannelCredentialsDto): string; //# sourceMappingURL=channelcredentialsdto.d.ts.map