/**
 * 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 KeyPerson
 */
export interface KeyPerson {
    /**
     *
     * @type {string}
     * @memberof KeyPerson
     */
    name: string;
    /**
     *
     * @type {string}
     * @memberof KeyPerson
     */
    role: string;
}
/**
 * Check if a given object implements the KeyPerson interface.
 */
export declare function instanceOfKeyPerson(value: object): value is KeyPerson;
export declare function KeyPersonFromJSON(json: any): KeyPerson;
export declare function KeyPersonFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeyPerson;
export declare function KeyPersonToJSON(json: any): KeyPerson;
export declare function KeyPersonToJSONTyped(value?: KeyPerson | null, ignoreDiscriminator?: boolean): any;
