export declare class SuperFundProduct { /** * The ABN of the Regulated SuperFund */ 'aBN'?: string; /** * The USI of the Regulated SuperFund */ 'uSI'?: string; /** * The SPIN of the Regulated SuperFund. This field has been deprecated. New superfunds will not have a SPIN value. The USI field should be used instead of SPIN */ 'sPIN'?: string; /** * The name of the Regulated SuperFund */ 'productName'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }