import { PropType } from 'vue'; import { Row } from './types'; export declare const props: { modelValue: { type: PropType[]>; default: () => any[]; }; }; export declare const emits: { 'update:modelValue': (v: Partial[]) => Partial[]; };