declare class Channel { request: any; constructor(props: any); getChannelList: ({ scope, language, sdpAppId, sdpOrgId, serviceName, api }: { scope: any; language?: string | undefined; sdpAppId: any; sdpOrgId: any; serviceName: any; api?: any; }) => Promise; getChannelSectionList: ({ channelId, serviceName, sdpAppId, sdpOrgId, api }: { channelId: any; serviceName: any; sdpAppId: any; sdpOrgId: any; api?: any; }) => Promise; } export default Channel;