import { KiotVietClient } from '../client'; import { SalesChannelListResponse } from '../types'; export declare class SalesChannelsHandler { private client; constructor(client: KiotVietClient); /** * Get list of sales channels * @returns SalesChannelListResponse */ list(): Promise; }