import { type AdditionalDataHolder, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {ExecutionStatus} */ export declare function createExecutionStatusFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param ExecutionStatus The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoExecutionStatus(executionStatus?: Partial | undefined): Record void>; /** * Detailed status that indicates the current state of the Discover engine and its progress. */ export interface ExecutionStatus extends AdditionalDataHolder, Parsable { /** * Flag that indicates if another run is already in progress or not. */ running?: boolean | null; } /** * Serializes information the current object * @param ExecutionStatus The instance to serialize from. * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param writer Serialization writer to use to serialize this model */ export declare function serializeExecutionStatus(writer: SerializationWriter, executionStatus?: Partial | undefined | null, isSerializingDerivedType?: boolean): void;