export declare type TraitsAttributeWithPrevalence = { /** * Floating point value from 0 to 1 representing the prevalence of this value for this trait type. */ prevalence?: number; /** * Name of the trait category, i.e. Hat, Color, Face, etc. */ trait_type?: string; /** * Value for the trait, i.e. White Cap, Blue, Angry, etc. */ value?: any; };