export declare enum MessageType {
    TEXT = "text",
    PHOTO = "photo",
    VIDEO = "video"
}
export declare class BroadcastMessageDto {
    message: string;
    type?: MessageType;
    mediaUrl?: string;
}
export declare class BotStatusResponseDto {
    id: number;
    activeOperations: number;
    maxOperations: number;
    utilizationPercentage: number;
}
export declare class ConfigurationResponseDto {
    channelConfigured: boolean;
    botsCount: number;
    maxOperationsPerBot: number;
}
export declare class BroadcastResponseDto {
    success: boolean;
    messageId?: string;
    timestamp: string;
}
