export type MetaFieldData = { metafield: string; value: string[]; }; interface Props { title?: string; scope: string; metafieldsData?: MetaFieldData[]; onChange?: (value: { metafield: string; value: string[]; }) => void; } declare const MetaData: ({ title, scope, metafieldsData, onChange }: Props) => import("react/jsx-runtime").JSX.Element; export default MetaData;