export * from './BatchInputSubscriptionBatchUpdateRequest';
export * from './BatchResponseSubscriptionResponse';
export * from './BatchResponseSubscriptionResponseWithErrors';
export * from './ErrorCategory';
export * from './ErrorDetail';
export * from './ModelError';
export * from './SettingsChangeRequest';
export * from './SettingsResponse';
export * from './StandardError';
export * from './SubscriptionBatchUpdateRequest';
export * from './SubscriptionCreateRequest';
export * from './SubscriptionListResponse';
export * from './SubscriptionPatchRequest';
export * from './SubscriptionResponse';
export * from './ThrottlingSettings';
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;
}
