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