import { ChannelConnectedEvent } from "./ChannelConnectedEvent"; export declare class LineChannelConnectedEvent extends ChannelConnectedEvent { static eventName: string; static eventVersion: number; readonly lineChannelId: string; readonly channelSecret: string; readonly accessToken: string; readonly platform = "LINE"; constructor({ tenantId, channelId, channelName, lineChannelId, channelSecret, accessToken }: { tenantId: string; channelId: string; channelName: string; lineChannelId: string; channelSecret: string; accessToken: string; }); }