import { CardBrandDetails } from './cardBrandDetails';
export declare class CardDetailsResponse {
    /**
    * The list of brands identified for the card.
    */
    'brands'?: Array<CardBrandDetails>;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
