export declare namespace FieldInterfaces {
    interface IField {
        name: string;
        type: string;
        value: any;
        taxonomy_group?: string;
    }
    interface IAsset {
        name: string;
        type: string;
        size: number;
        description: string;
        url: string;
    }
    interface IMultipleChoiceOption {
        name: string;
        codename: string;
    }
    interface ITaxonomyTerm {
        name: string;
        codename: string;
    }
    interface IRichTextField extends IField {
        /**
         * Modular content items
         */
        modular_content?: string[];
        /**
         * Json with links identified by item Id
         */
        links: any;
    }
}
