export declare const JSON_ONLY_PROPERTIES: string[]; /** * This method removes and properties that are entirely specific to the JSON * configuration and that should not be used as HTML attributes. * * This is in place as certain properties being used as attributes result in * console errors. * * @param {object} options The options object that contains attributes and JSON configuration properties. * @param {Array} alsoRemove An array of additional properties to remove. * @returns A clean(er) JSON object. */ declare const cleanAttributes: (options: any, alsoRemove?: string[]) => {}; export default cleanAttributes;