export * from './AssociationDefinition';
export * from './AssociationDefinitionEgg';
export * from './CollectionResponseObjectSchemaNoPaging';
export * from './ErrorDetail';
export * from './ModelError';
export * from './ObjectSchema';
export * from './ObjectSchemaEgg';
export * from './ObjectTypeDefinition';
export * from './ObjectTypeDefinitionLabels';
export * from './ObjectTypeDefinitionPatch';
export * from './ObjectTypePropertyCreate';
export * from './Option';
export * from './OptionInput';
export * from './Property';
export * from './PropertyModificationMetadata';
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;
}
