import { WebApiExecuteRequest } from "cdsify"; import { StructuralProperty } from "cdsify"; import { OperationType } from "cdsify"; export declare const RetrieveMetadataChangesMetadata: { parameterTypes: { Query: { typeName: string; structuralProperty: StructuralProperty; }; DeletedMetadataFilters: { typeName: string; structuralProperty: StructuralProperty; }; ClientVersionStamp: { typeName: string; structuralProperty: StructuralProperty; }; AppModuleId: { typeName: string; structuralProperty: StructuralProperty; }; RetrieveAllSettings: { typeName: string; structuralProperty: StructuralProperty; }; }; operationType: OperationType; operationName: string; }; export interface RetrieveMetadataChangesRequest extends WebApiExecuteRequest { Query?: import("../complextypes/EntityQueryExpression").EntityQueryExpression; DeletedMetadataFilters?: import("../enums/DeletedMetadataFilters").DeletedMetadataFilters; ClientVersionStamp?: string; AppModuleId?: import("cdsify").Guid; RetrieveAllSettings?: boolean; }