type Props = { title?: string; initialIds?: string[]; limit?: number; metaobjects?: string[]; okButtonLoading?: boolean; onClose?: () => void; onOk?: (metaobjectEntries: string[]) => void; }; declare const MetaobjectEntriesPicker: ({ title, initialIds, limit, metaobjects, okButtonLoading, onClose, onOk, }: Props) => import("react/jsx-runtime").JSX.Element; export default MetaobjectEntriesPicker;