import { PropType } from 'vue'; import { Row } from './types'; import { __SkAppTablesV1 } from '@skzz/platform/components/app-tables-v1'; import { SetDataEvent, UnsetDataEvent } from '@vunk/core'; export declare const props: { modelValue: { type: PropType; default: () => any[]; }; tableColumns: { type: PropType<__SkAppTablesV1.Column[]>; default: () => any[]; }; buttons: { type: PropType>; default: () => {}; }; }; export declare const emits: { check: any; 'update:modelValue': (e: Row[]) => import("../../../api/system/menu").Menu[]; 'setData:buttons': (e: SetDataEvent) => SetDataEvent; 'unsetData:buttons': (e: UnsetDataEvent) => UnsetDataEvent; };