/// import { Record } from 'amiya'; export declare type SkuValue = { skus: Array; data: Array; }; interface IProps { onChange?: (value: SkuValue) => void; onDataChange?: (data: Array) => void; value?: SkuValue; } export default function SkuEdit(props: IProps): JSX.Element; export {};