import { Paging } from './Paging';
import { PublicImportResponse } from './PublicImportResponse';
export declare class CollectionResponsePublicImportResponse {
    'results': Array<PublicImportResponse>;
    'paging'?: Paging;
    static readonly discriminator: string | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
