import { EditGridComponentSchema } from '@open-formulieren/types'; import { GetRegistryEntry, IsEmpty } from '../types'; import { JSONObject } from '../../types'; /** * A function that validates the editgrid children components and returns whether they * are considered as empty or not. * * Each (child) component is validated according to its `isEmpty` implemented function. * * @param editgridDefinition The parent (editgrid) component definition. * @param childValues The values of the editgrid's child component. * @param getRegistryEntry Hook to look up a component in the registry. * * @return The function returns whether the (child) component is empty (true) or not (false). */ export declare function hasEmptyChildComponent(editgridDefinition: EditGridComponentSchema, childValues: JSONObject, getRegistryEntry: GetRegistryEntry): boolean; declare const isEmpty: IsEmpty; export default isEmpty;