import type { PopoverProps } from '@pega/cosmos-react-core'; import type { MockRawItem } from './mockData'; interface ItemConfigProps { itemId: MockRawItem['id']; target: NonNullable; onCancel: () => void; onSubmit: () => void; } declare const ItemConfig: ({ itemId, target, onCancel, onSubmit }: ItemConfigProps) => import("react/jsx-runtime").JSX.Element; export default ItemConfig; //# sourceMappingURL=ItemConfig.d.ts.map