import { ChannelSettingsCommand } from "./ChannelSettingsCommand"; export declare class ConnectLineChannelCommand extends ChannelSettingsCommand { static readonly commandName = "ConnectLineChannelCommand"; readonly channelName: string; readonly lineChannelId: string; readonly channelSecret: string; readonly accessToken: string; constructor({ tenantId, channelId, channelName, lineChannelId, channelSecret, accessToken }: { tenantId: string; channelId: string; channelName: string; lineChannelId: string; channelSecret: string; accessToken: string; }); }