/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * Contact: contact@emergentmethods.ai
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface TelegramSourceParams
 */
export interface TelegramSourceParams {
    /**
     * The channel name to use as a source
     * @type {string}
     * @memberof TelegramSourceParams
     */
    channelName: string;
}
/**
 * Check if a given object implements the TelegramSourceParams interface.
 */
export declare function instanceOfTelegramSourceParams(value: object): value is TelegramSourceParams;
export declare function TelegramSourceParamsFromJSON(json: any): TelegramSourceParams;
export declare function TelegramSourceParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TelegramSourceParams;
export declare function TelegramSourceParamsToJSON(json: any): TelegramSourceParams;
export declare function TelegramSourceParamsToJSONTyped(value?: TelegramSourceParams | null, ignoreDiscriminator?: boolean): any;
