import { Button } from '@skzz/platform/api/system/button'; import { PropType } from 'vue'; export declare const props: { modules: { type: PropType; default: () => any[]; }; api: { type: PropType<() => Promise>; default: () => void; }; excludes: { type: PropType<("search" | "increase" | "remove" | "modify")[]>; default: () => string[]; }; }; export declare const emits: { c: any; r: any; u: any; d: any; increase: any; modify: any; remove: any; search: any; click: (e: string) => string; };