export interface Channel { seller?: string; regionId?: string; salesChannel?: string; hasOnlyDefaultSalesChannel?: boolean; } export default class ChannelMarshal { static parse(channelString: string): Required; static stringify(channel: Channel): string; } //# sourceMappingURL=channel.d.ts.map