import { CustomizableOptions } from '../../composables/useCustomizableOptions'; import { locales as defaultLocales } from './locales'; type __VLS_Props = { nbTotal?: number; nbFiltered?: number; search?: string; searchLabel?: string; showAddButton?: boolean; addButtonLabel?: string; loading?: boolean; locales?: typeof defaultLocales; } & CustomizableOptions; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ searchLeft?: () => undefined; searchRight?: () => undefined; filters?: () => undefined; }> & { searchLeft?: () => undefined; searchRight?: () => undefined; filters?: () => undefined; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & { add: () => any; "update:search": (value: string) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onAdd?: (() => any) | undefined; "onUpdate:search"?: ((value: string) => any) | undefined; }>, { search: string; locales: typeof defaultLocales; loading: boolean; nbTotal: number; nbFiltered: number; searchLabel: string; showAddButton: boolean; addButtonLabel: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };