import { PollerStatus } from './PollerStatus';
/**
 *
 * @export
 * @interface MetaPollingResponseApiAllOf
 */
export interface MetaPollingResponseApiAllOf {
    /**
     *
     * @type {PollerStatus}
     * @memberof MetaPollingResponseApiAllOf
     */
    status: PollerStatus;
}
/**
 * Check if a given object implements the MetaPollingResponseApiAllOf interface.
 */
export declare function instanceOfMetaPollingResponseApiAllOf(value: object): boolean;
export declare function MetaPollingResponseApiAllOfFromJSON(json: any): MetaPollingResponseApiAllOf;
export declare function MetaPollingResponseApiAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): MetaPollingResponseApiAllOf;
export declare function MetaPollingResponseApiAllOfToJSON(value?: MetaPollingResponseApiAllOf | null): any;
