export * from './CollectionResponsePipelineNoPaging';
export * from './CollectionResponsePipelineStageNoPaging';
export * from './CollectionResponsePublicAuditInfoNoPaging';
export * from './ErrorDetail';
export * from './ModelError';
export * from './Pipeline';
export * from './PipelineInput';
export * from './PipelinePatchInput';
export * from './PipelineStage';
export * from './PipelineStageInput';
export * from './PipelineStagePatchInput';
export * from './PublicAuditInfo';
export declare class ObjectSerializer {
    static findCorrectType(data: any, expectedType: string): any;
    static serialize(data: any, type: string, format: string): any;
    static deserialize(data: any, type: string, format: string): any;
    static normalizeMediaType(mediaType: string | undefined): string | undefined;
    static getPreferredMediaType(mediaTypes: Array<string>): string;
    static stringify(data: any, mediaType: string): string;
    static parse(rawData: string, mediaType: string | undefined): any;
}
