import { __SkAppTables } from '@skzz/platform/shared'; import { PropType } from 'vue'; import { Row } from './types'; export declare const props: { modelValue: { type: PropType[]>; default: () => any[]; }; readonly: { type: BooleanConstructor; default: boolean; }; columns: { type: PropType<__SkAppTables.Column[]>; default: () => any[]; }; }; export declare const emits: { 'update:modelValue': (v: Partial[]) => Partial[]; };