export declare type AttributeDefinition = {
    description?: string;
    type: string;
};
export declare type TransformedAttributesMap = Record<string, AttributeDefinition>;
export declare type AttributeFieldItem = {
    fieldName: string;
    fieldType: string;
    fieldDescription?: string;
};
export declare type AttributesFieldsParameter = {
    fieldValues: AttributeFieldItem[];
};
