import * as model from "./index";
/**
 * Hypotheses about person's gender
 */
export declare class AiNameGenderHypothesisList extends model.ListResponseOfAiNameGenderHypothesis {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): {
        name: string; /**
         * Attribute type map
         */
        baseName: string;
        type: string;
    }[];
    /**
     * Hypotheses about person's gender
     * @param value
     */
    constructor(value?: Array<model.AiNameGenderHypothesis>);
}
/**
 *  AiNameGenderHypothesisList model builder
 */
export declare class AiNameGenderHypothesisListBuilder {
    private readonly model;
    constructor(model: AiNameGenderHypothesisList);
    /**
     * Build model.
     */
    build(): AiNameGenderHypothesisList;
    value(value: Array<model.AiNameGenderHypothesis>): AiNameGenderHypothesisListBuilder;
}
