import { Channel } from '../../domain/entities/Channel';
import { IChannelRepository } from '../../domain/repositories/IChannelRepository';
interface GetChannelByIdRequest {
    id: string;
    organizationId: string;
}
export declare class GetChannelById {
    private channelRepository;
    constructor(channelRepository: IChannelRepository);
    execute(request: GetChannelByIdRequest): Promise<Channel | null>;
}
export {};
//# sourceMappingURL=GetChannelById.d.ts.map