import type { IField } from './types'; export declare function inArray(arr: Array, element: any): boolean; export declare function isRequired(field: IField): boolean; export declare function isFieldDuplicated(fields: IField[]): boolean; export declare function clickOutside(node: any): { destroy(): void; };