import type * as Fields from "../types/api-response-fields"; /** * Returns an array of the ContentType data from the ReferenceField. * This hooks only works in the context of the Griddo editor. * @param data The property of the ReferenceField. * * @example * const dataItems = useReferenceFieldData(data) */ declare function useReferenceFieldData( /** The ReferenceField from the module schema */ data?: Fields.Reference): Fields.QueriedData | undefined | null; export { useReferenceFieldData };