import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue'; import { FastSearch } from './type'; import { PlusColumn } from 'firefly-plus-components/es/types'; export interface DynamicForm { field: string; method: string; keywords: string; } export interface PlusTableSearchProps { columns: PlusColumn[]; fastSearch?: FastSearch | boolean; } export interface State { dialogVisible: boolean; keyword: string; clickIndex: null | number; dynamicForm: { dynamicFormArr: DynamicForm[]; isSave: boolean; saveName: string; }; [key: string]: any; } declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { columns: () => never[]; fastSearch: boolean; }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { columns: () => never[]; fastSearch: boolean; }>>>, { columns: PlusColumn[]; fastSearch: boolean | FastSearch; }, {}>, { fastSearch?(_: {}): any; "btns-more-icon"?(_: {}): any; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };