declare class SubscriptionComponentReferenceConfiguration {
    /**
    * The ID of the component reference that is being configured.
    */
    'productComponentReferenceId'?: number;
    /**
    * The quantity that should be applied to the component.
    */
    'quantity'?: number;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { SubscriptionComponentReferenceConfiguration };
