import * as vue from 'vue'; import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, JSXComponent, Ref, UnwrapRef } from 'vue'; type SlotsToProps> = { $children?: (VNodeChild | (T extends { default: infer V; } ? V : {}) | { [K in keyof T]?: T[K]; }); 'v-slots'?: { [K in keyof T]?: T[K] | false; }; } & { [K in keyof T as `v-slot:${K & string}`]?: T[K] | false; }; type RawSlots = Record; type Slot = [T] extends [never] ? () => VNodeChild : (arg: T) => VNodeChild; type VueSlot = [T] extends [never] ? () => VNode[] : (arg: T) => VNode[]; type MakeInternalSlots = { [K in keyof T]: Slot; }; type MakeSlots = { [K in keyof T]: VueSlot; }; type GenericProps> = { $props: Props & SlotsToProps; $slots: MakeSlots; }; interface FilterPropsOptions, Props = ExtractPropTypes> { filterProps, U extends Exclude>>(props: T): Partial>; } declare function deepEqual(a: any, b: any): boolean; type SelectItemKey> = boolean | null | undefined | string | readonly (string | number)[] | ((item: T, fallback?: any) => any); type EventProp void> = F; declare const EventProp: () => PropType<(...args: T) => void>; interface LoaderSlotProps { color: string | undefined; isActive: boolean; } type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent; declare const IconValue: PropType; type ExpandProps = { expandOnClick: boolean; expanded: readonly string[]; 'onUpdate:expanded': ((value: any[]) => void) | undefined; }; declare function provideExpanded(props: ExpandProps): { expand: (item: DataTableItem, value: boolean) => void; expanded: Ref> & { readonly externalValue: readonly string[]; }; expandOnClick: Ref; isExpanded: (item: DataTableItem) => boolean; toggleExpand: (item: DataTableItem) => void; }; type SortItem = { key: string; order?: boolean | 'asc' | 'desc'; }; declare function provideSort(options: { sortBy: Ref; mustSort: Ref; multiSort: Ref; page?: Ref; }): { sortBy: Ref; toggleSort: (column: InternalDataTableHeader) => void; isSorted: (column: InternalDataTableHeader) => boolean; }; interface GroupableItem { type: 'item'; raw: T; } interface Group { type: 'group'; depth: number; id: string; key: string; value: any; items: readonly (T | Group)[]; } declare function provideGroupBy(options: { groupBy: Ref; sortBy: Ref; }): { sortByWithGroups: vue.ComputedRef; toggleGroup: (group: Group) => void; opened: Ref & Omit, keyof Set>>; groupBy: Ref; extractRows: >(items: readonly (T | Group)[]) => T[]; isGroupOpen: (group: Group) => boolean; }; /** * - match without highlight * - single match (index), length already known * - single match (start, end) * - multiple matches (start, end), probably shouldn't overlap */ type FilterMatch = boolean | number | [number, number] | [number, number][]; type FilterFunction = (value: string, query: string, item?: InternalItem) => FilterMatch; type FilterKeyFunctions = Record; type FilterKeys = string | string[]; type FilterMode = 'some' | 'every' | 'union' | 'intersection'; interface InternalItem { value: any; raw: T; } type DataTableCompareFunction = (a: T, b: T) => number; type DataTableHeader = { key?: 'data-table-group' | 'data-table-select' | 'data-table-expand' | (string & {}); value?: SelectItemKey; title?: string; fixed?: boolean; align?: 'start' | 'end' | 'center'; width?: number | string; minWidth?: string; maxWidth?: string; headerProps?: Record; cellProps?: HeaderCellProps; sortable?: boolean; sort?: DataTableCompareFunction; sortRaw?: DataTableCompareFunction; filter?: FilterFunction; children?: DataTableHeader[]; }; type InternalDataTableHeader = Omit & { key: string | null; value: SelectItemKey | null; sortable: boolean; fixedOffset?: number; lastFixed?: boolean; colspan?: number; rowspan?: number; children?: InternalDataTableHeader[]; }; interface DataTableItem extends InternalItem, GroupableItem, SelectableItem { key: any; index: number; columns: { [key: string]: any; }; } type GroupHeaderSlot = { index: number; item: Group; columns: InternalDataTableHeader[]; isExpanded: ReturnType['isExpanded']; toggleExpand: ReturnType['toggleExpand']; isSelected: ReturnType['isSelected']; toggleSelect: ReturnType['toggleSelect']; toggleGroup: ReturnType['toggleGroup']; isGroupOpen: ReturnType['isGroupOpen']; }; type ItemSlotBase = { index: number; item: T; internalItem: DataTableItem; isExpanded: ReturnType['isExpanded']; toggleExpand: ReturnType['toggleExpand']; isSelected: ReturnType['isSelected']; toggleSelect: ReturnType['toggleSelect']; }; type ItemSlot = ItemSlotBase & { columns: InternalDataTableHeader[]; }; type ItemKeySlot = ItemSlotBase & { value: any; column: InternalDataTableHeader; }; type RowProps = Record | ((data: Pick, 'index' | 'item' | 'internalItem'>) => Record); type CellProps = Record | ((data: Pick, 'index' | 'item' | 'internalItem' | 'value' | 'column'>) => Record); type HeaderCellProps = Record | ((data: Pick, 'index' | 'item' | 'internalItem' | 'value'>) => Record); interface DataTableItemProps { items: any[]; itemValue: SelectItemKey; itemSelectable: SelectItemKey; returnObject: boolean; } interface SelectableItem { value: any; selectable: boolean; } type SelectionProps = Pick & { modelValue: readonly any[]; selectStrategy: 'single' | 'page' | 'all'; valueComparator: typeof deepEqual; 'onUpdate:modelValue': EventProp<[any[]]> | undefined; }; declare function provideSelection(props: SelectionProps, { allItems, currentPage }: { allItems: Ref; currentPage: Ref; }): { toggleSelect: (item: SelectableItem) => void; select: (items: SelectableItem[], value: boolean) => void; selectAll: (value: boolean) => void; isSelected: (items: SelectableItem | SelectableItem[]) => boolean; isSomeSelected: (items: SelectableItem | SelectableItem[]) => boolean; someSelected: vue.ComputedRef; allSelected: vue.ComputedRef; showSelectAll: boolean; }; type HeadersSlotProps = { headers: InternalDataTableHeader[][]; columns: InternalDataTableHeader[]; sortBy: UnwrapRef['sortBy']>; someSelected: UnwrapRef['someSelected']>; allSelected: UnwrapRef['allSelected']>; toggleSort: ReturnType['toggleSort']; selectAll: ReturnType['selectAll']; getSortIcon: (column: InternalDataTableHeader) => IconValue; isSorted: ReturnType['isSorted']; }; type VDataTableHeaderCellColumnSlotProps = { column: InternalDataTableHeader; selectAll: ReturnType['selectAll']; isSorted: ReturnType['isSorted']; toggleSort: ReturnType['toggleSort']; sortBy: UnwrapRef['sortBy']>; someSelected: UnwrapRef['someSelected']>; allSelected: UnwrapRef['allSelected']>; getSortIcon: (column: InternalDataTableHeader) => IconValue; }; type VDataTableHeadersSlots = { headers: HeadersSlotProps; loader: LoaderSlotProps; 'header.data-table-select': VDataTableHeaderCellColumnSlotProps; 'header.data-table-expand': VDataTableHeaderCellColumnSlotProps; } & { [key: `header.${string}`]: VDataTableHeaderCellColumnSlotProps; }; type Density = null | 'default' | 'comfortable' | 'compact'; declare function providePagination(options: { page: Ref; itemsPerPage: Ref; itemsLength: Ref; }): { page: Ref; itemsPerPage: Ref; startIndex: vue.ComputedRef; stopIndex: vue.ComputedRef; pageCount: vue.ComputedRef; itemsLength: Ref; nextPage: () => void; prevPage: () => void; setPage: (value: number) => void; setItemsPerPage: (value: number) => void; }; type VDataTableGroupHeaderRowSlots = { 'data-table-group': { item: Group; count: number; props: Record; }; 'data-table-select': { props: Record; }; }; type VDataTableRowSlots = { 'item.data-table-select': Omit, 'value'>; 'item.data-table-expand': Omit, 'value'>; } & { [key: `item.${string}`]: ItemKeySlot; }; declare const VDataTableRow: { new (...args: any[]): vue.CreateComponentPublicInstance<{} & { index?: number | undefined; onClick?: ((args_0: MouseEvent) => void) | undefined; onContextmenu?: ((args_0: MouseEvent) => void) | undefined; onDblclick?: ((args_0: MouseEvent) => void) | undefined; }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit, "item" | "$children" | "v-slots" | "cellProps" | `v-slot:item.${string}`>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {} & { index?: number | undefined; onClick?: ((args_0: MouseEvent) => void) | undefined; onContextmenu?: ((args_0: MouseEvent) => void) | undefined; onDblclick?: ((args_0: MouseEvent) => void) | undefined; }, {}, true, {}, vue.SlotsType) => vue.VNode[]; 'item.data-table-select': (arg: Omit, "value">) => vue.VNode[]; 'item.data-table-expand': (arg: Omit, "value">) => vue.VNode[]; }>>, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, {} & { index?: number | undefined; onClick?: ((args_0: MouseEvent) => void) | undefined; onContextmenu?: ((args_0: MouseEvent) => void) | undefined; onDblclick?: ((args_0: MouseEvent) => void) | undefined; }, {}, {}, {}, {}, {}>; __isFragment?: undefined; __isTeleport?: undefined; __isSuspense?: undefined; } & vue.ComponentOptionsBase<{} & { index?: number | undefined; onClick?: ((args_0: MouseEvent) => void) | undefined; onContextmenu?: ((args_0: MouseEvent) => void) | undefined; onDblclick?: ((args_0: MouseEvent) => void) | undefined; }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit, "item" | "$children" | "v-slots" | "cellProps" | `v-slot:item.${string}`>, string, {}, {}, string, vue.SlotsType) => vue.VNode[]; 'item.data-table-select': (arg: Omit, "value">) => vue.VNode[]; 'item.data-table-expand': (arg: Omit, "value">) => vue.VNode[]; }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new (props: { item?: DataTableItem | undefined; cellProps?: CellProps | undefined; }, slots: VDataTableRowSlots) => GenericProps<{ item?: DataTableItem | undefined; cellProps?: CellProps | undefined; }, VDataTableRowSlots>) & FilterPropsOptions<{ index: NumberConstructor; item: PropType>; cellProps: PropType>; onClick: PropType<(args_0: MouseEvent) => void>; onContextmenu: PropType<(args_0: MouseEvent) => void>; onDblclick: PropType<(args_0: MouseEvent) => void>; }, vue.ExtractPropTypes<{ index: NumberConstructor; item: PropType>; cellProps: PropType>; onClick: PropType<(args_0: MouseEvent) => void>; onContextmenu: PropType<(args_0: MouseEvent) => void>; onDblclick: PropType<(args_0: MouseEvent) => void>; }>>; type VDataTableRow = InstanceType; type VDataTableRowsSlots = VDataTableGroupHeaderRowSlots & VDataTableRowSlots & { item: ItemSlot & { props: Record; }; loading: never; 'group-header': GroupHeaderSlot; 'no-data': never; 'expanded-row': ItemSlot; }; declare const VDataTableRows: { new (...args: any[]): vue.CreateComponentPublicInstance<{ noDataText: string; loadingText: string; hideNoData: boolean; } & { loading?: string | boolean | undefined; cellProps?: CellProps | undefined; rowProps?: RowProps | undefined; }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & { noDataText: string; loadingText: string; hideNoData: boolean; } & { loading?: string | boolean | undefined; cellProps?: CellProps | undefined; rowProps?: RowProps | undefined; }, { noDataText: string; loadingText: string; hideNoData: boolean; }, true, {}, vue.SlotsType) => vue.VNode[]; 'data-table-group': (arg: { item: Group; count: number; props: Record; }) => vue.VNode[]; 'data-table-select': (arg: { props: Record; }) => vue.VNode[]; 'item.data-table-select': (arg: Omit, "value">) => vue.VNode[]; 'item.data-table-expand': (arg: Omit, "value">) => vue.VNode[]; item: (arg: { index: number; item: unknown; internalItem: DataTableItem; isExpanded: (item: DataTableItem) => boolean; toggleExpand: (item: DataTableItem) => void; isSelected: (items: SelectableItem | SelectableItem[]) => boolean; toggleSelect: (item: SelectableItem) => void; } & { columns: InternalDataTableHeader[]; } & { props: Record; }) => vue.VNode[]; loading: () => vue.VNode[]; 'group-header': (arg: GroupHeaderSlot) => vue.VNode[]; 'no-data': () => vue.VNode[]; 'expanded-row': (arg: ItemSlot) => vue.VNode[]; }>>, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, { noDataText: string; loadingText: string; hideNoData: boolean; } & { loading?: string | boolean | undefined; cellProps?: CellProps | undefined; rowProps?: RowProps | undefined; }, {}, {}, {}, {}, { noDataText: string; loadingText: string; hideNoData: boolean; }>; __isFragment?: undefined; __isTeleport?: undefined; __isSuspense?: undefined; } & vue.ComponentOptionsBase<{ noDataText: string; loadingText: string; hideNoData: boolean; } & { loading?: string | boolean | undefined; cellProps?: CellProps | undefined; rowProps?: RowProps | undefined; }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row">, string, { noDataText: string; loadingText: string; hideNoData: boolean; }, {}, string, vue.SlotsType) => vue.VNode[]; 'data-table-group': (arg: { item: Group; count: number; props: Record; }) => vue.VNode[]; 'data-table-select': (arg: { props: Record; }) => vue.VNode[]; 'item.data-table-select': (arg: Omit, "value">) => vue.VNode[]; 'item.data-table-expand': (arg: Omit, "value">) => vue.VNode[]; item: (arg: { index: number; item: unknown; internalItem: DataTableItem; isExpanded: (item: DataTableItem) => boolean; toggleExpand: (item: DataTableItem) => void; isSelected: (items: SelectableItem | SelectableItem[]) => boolean; toggleSelect: (item: SelectableItem) => void; } & { columns: InternalDataTableHeader[]; } & { props: Record; }) => vue.VNode[]; loading: () => vue.VNode[]; 'group-header': (arg: GroupHeaderSlot) => vue.VNode[]; 'no-data': () => vue.VNode[]; 'expanded-row': (arg: ItemSlot) => vue.VNode[]; }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new (props: { items?: readonly (DataTableItem | Group)[] | undefined; }, slots: VDataTableRowsSlots) => GenericProps<{ items?: readonly (DataTableItem | Group)[] | undefined; }, VDataTableRowsSlots>) & FilterPropsOptions<{ loading: (StringConstructor | BooleanConstructor)[]; loadingText: { type: StringConstructor; default: string; }; hideNoData: BooleanConstructor; items: { type: PropType | DataTableItem)[]>; default: () => never[]; }; noDataText: { type: StringConstructor; default: string; }; rowProps: PropType>; cellProps: PropType>; }, vue.ExtractPropTypes<{ loading: (StringConstructor | BooleanConstructor)[]; loadingText: { type: StringConstructor; default: string; }; hideNoData: BooleanConstructor; items: { type: PropType | DataTableItem)[]>; default: () => never[]; }; noDataText: { type: StringConstructor; default: string; }; rowProps: PropType>; cellProps: PropType>; }>>; type VDataTableRows = InstanceType; type VDataTableSlotProps = { page: number; itemsPerPage: number; sortBy: UnwrapRef['sortBy']>; pageCount: number; toggleSort: ReturnType['toggleSort']; setItemsPerPage: ReturnType['setItemsPerPage']; someSelected: boolean; allSelected: boolean; isSelected: ReturnType['isSelected']; select: ReturnType['select']; selectAll: ReturnType['selectAll']; toggleSelect: ReturnType['toggleSelect']; isExpanded: ReturnType['isExpanded']; toggleExpand: ReturnType['toggleExpand']; isGroupOpen: ReturnType['isGroupOpen']; toggleGroup: ReturnType['toggleGroup']; items: readonly T[]; internalItems: readonly DataTableItem[]; groupedItems: readonly (DataTableItem | Group>)[]; columns: InternalDataTableHeader[]; headers: InternalDataTableHeader[][]; }; type VDataTableSlots = VDataTableRowsSlots & VDataTableHeadersSlots & { default: VDataTableSlotProps; colgroup: VDataTableSlotProps; top: VDataTableSlotProps; body: VDataTableSlotProps; tbody: VDataTableSlotProps; thead: VDataTableSlotProps; tfoot: VDataTableSlotProps; bottom: VDataTableSlotProps; 'body.prepend': VDataTableSlotProps; 'body.append': VDataTableSlotProps; 'footer.prepend': never; }; type ItemType$2 = T extends readonly (infer U)[] ? U : never; declare const VDataTable: { new (...args: any[]): vue.CreateComponentPublicInstance<{ page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customFilter?: FilterFunction | undefined; customKeyFilter?: FilterKeyFunctions | undefined; filterKeys?: FilterKeys | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((value: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((value: any) => any) | undefined; "onUpdate:page"?: ((value: number) => any) | undefined; "onUpdate:itemsPerPage"?: ((value: number) => any) | undefined; "onUpdate:options"?: ((value: any) => any) | undefined; "onUpdate:currentItems"?: ((value: any) => any) | undefined; }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any[]) => boolean; 'update:page': (value: number) => boolean; 'update:itemsPerPage': (value: number) => boolean; 'update:sortBy': (value: any) => boolean; 'update:options': (value: any) => boolean; 'update:groupBy': (value: any) => boolean; 'update:expanded': (value: any) => boolean; 'update:currentItems': (value: any) => boolean; }, "$children" | "v-slot:default" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & { page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customFilter?: FilterFunction | undefined; customKeyFilter?: FilterKeyFunctions | undefined; filterKeys?: FilterKeys | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((value: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((value: any) => any) | undefined; "onUpdate:page"?: ((value: number) => any) | undefined; "onUpdate:itemsPerPage"?: ((value: number) => any) | undefined; "onUpdate:options"?: ((value: any) => any) | undefined; "onUpdate:currentItems"?: ((value: any) => any) | undefined; }, { page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; }, true, {}, vue.SlotsType) => vue.VNode[]; [x: `header.${string}`]: (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'data-table-group': (arg: { item: Group; count: number; props: Record; }) => vue.VNode[]; 'data-table-select': (arg: { props: Record; }) => vue.VNode[]; 'item.data-table-select': (arg: Omit, "value">) => vue.VNode[]; 'item.data-table-expand': (arg: Omit, "value">) => vue.VNode[]; item: (arg: { index: number; item: any; internalItem: DataTableItem; isExpanded: (item: DataTableItem) => boolean; toggleExpand: (item: DataTableItem) => void; isSelected: (items: SelectableItem | SelectableItem[]) => boolean; toggleSelect: (item: SelectableItem) => void; } & { columns: InternalDataTableHeader[]; } & { props: Record; }) => vue.VNode[]; loading: () => vue.VNode[]; 'group-header': (arg: GroupHeaderSlot) => vue.VNode[]; 'no-data': () => vue.VNode[]; 'expanded-row': (arg: ItemSlot) => vue.VNode[]; headers: (arg: HeadersSlotProps) => vue.VNode[]; loader: (arg: LoaderSlotProps) => vue.VNode[]; 'header.data-table-select': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'header.data-table-expand': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; default: (arg: VDataTableSlotProps) => vue.VNode[]; colgroup: (arg: VDataTableSlotProps) => vue.VNode[]; top: (arg: VDataTableSlotProps) => vue.VNode[]; body: (arg: VDataTableSlotProps) => vue.VNode[]; tbody: (arg: VDataTableSlotProps) => vue.VNode[]; thead: (arg: VDataTableSlotProps) => vue.VNode[]; tfoot: (arg: VDataTableSlotProps) => vue.VNode[]; bottom: (arg: VDataTableSlotProps) => vue.VNode[]; 'body.prepend': (arg: VDataTableSlotProps) => vue.VNode[]; 'body.append': (arg: VDataTableSlotProps) => vue.VNode[]; 'footer.prepend': () => vue.VNode[]; }>>, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, { page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customFilter?: FilterFunction | undefined; customKeyFilter?: FilterKeyFunctions | undefined; filterKeys?: FilterKeys | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((value: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((value: any) => any) | undefined; "onUpdate:page"?: ((value: number) => any) | undefined; "onUpdate:itemsPerPage"?: ((value: number) => any) | undefined; "onUpdate:options"?: ((value: any) => any) | undefined; "onUpdate:currentItems"?: ((value: any) => any) | undefined; }, {}, {}, {}, {}, { page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; }>; __isFragment?: undefined; __isTeleport?: undefined; __isSuspense?: undefined; } & vue.ComponentOptionsBase<{ page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customFilter?: FilterFunction | undefined; customKeyFilter?: FilterKeyFunctions | undefined; filterKeys?: FilterKeys | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((value: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((value: any) => any) | undefined; "onUpdate:page"?: ((value: number) => any) | undefined; "onUpdate:itemsPerPage"?: ((value: number) => any) | undefined; "onUpdate:options"?: ((value: any) => any) | undefined; "onUpdate:currentItems"?: ((value: any) => any) | undefined; }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any[]) => boolean; 'update:page': (value: number) => boolean; 'update:itemsPerPage': (value: number) => boolean; 'update:sortBy': (value: any) => boolean; 'update:options': (value: any) => boolean; 'update:groupBy': (value: any) => boolean; 'update:expanded': (value: any) => boolean; 'update:currentItems': (value: any) => boolean; }, "$children" | "v-slot:default" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, string, { page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; }, {}, string, vue.SlotsType) => vue.VNode[]; [x: `header.${string}`]: (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'data-table-group': (arg: { item: Group; count: number; props: Record; }) => vue.VNode[]; 'data-table-select': (arg: { props: Record; }) => vue.VNode[]; 'item.data-table-select': (arg: Omit, "value">) => vue.VNode[]; 'item.data-table-expand': (arg: Omit, "value">) => vue.VNode[]; item: (arg: { index: number; item: any; internalItem: DataTableItem; isExpanded: (item: DataTableItem) => boolean; toggleExpand: (item: DataTableItem) => void; isSelected: (items: SelectableItem | SelectableItem[]) => boolean; toggleSelect: (item: SelectableItem) => void; } & { columns: InternalDataTableHeader[]; } & { props: Record; }) => vue.VNode[]; loading: () => vue.VNode[]; 'group-header': (arg: GroupHeaderSlot) => vue.VNode[]; 'no-data': () => vue.VNode[]; 'expanded-row': (arg: ItemSlot) => vue.VNode[]; headers: (arg: HeadersSlotProps) => vue.VNode[]; loader: (arg: LoaderSlotProps) => vue.VNode[]; 'header.data-table-select': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'header.data-table-expand': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; default: (arg: VDataTableSlotProps) => vue.VNode[]; colgroup: (arg: VDataTableSlotProps) => vue.VNode[]; top: (arg: VDataTableSlotProps) => vue.VNode[]; body: (arg: VDataTableSlotProps) => vue.VNode[]; tbody: (arg: VDataTableSlotProps) => vue.VNode[]; thead: (arg: VDataTableSlotProps) => vue.VNode[]; tfoot: (arg: VDataTableSlotProps) => vue.VNode[]; bottom: (arg: VDataTableSlotProps) => vue.VNode[]; 'body.prepend': (arg: VDataTableSlotProps) => vue.VNode[]; 'body.append': (arg: VDataTableSlotProps) => vue.VNode[]; 'footer.prepend': () => vue.VNode[]; }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new (props: { items?: T | undefined; itemValue?: SelectItemKey>; rowProps?: RowProps> | undefined; cellProps?: CellProps> | undefined; itemSelectable?: SelectItemKey>; modelValue?: V | undefined; 'onUpdate:modelValue'?: ((value: V) => void) | undefined; }, slots: VDataTableSlots>) => GenericProps<{ items?: T | undefined; itemValue?: SelectItemKey>; rowProps?: RowProps> | undefined; cellProps?: CellProps> | undefined; itemSelectable?: SelectItemKey>; modelValue?: V | undefined; 'onUpdate:modelValue'?: ((value: V) => void) | undefined; }, VDataTableSlots>>) & FilterPropsOptions<{ prevIcon: { type: StringConstructor; default: string; }; nextIcon: { type: StringConstructor; default: string; }; firstIcon: { type: StringConstructor; default: string; }; lastIcon: { type: StringConstructor; default: string; }; itemsPerPageText: { type: StringConstructor; default: string; }; pageText: { type: StringConstructor; default: string; }; firstPageLabel: { type: StringConstructor; default: string; }; prevPageLabel: { type: StringConstructor; default: string; }; nextPageLabel: { type: StringConstructor; default: string; }; lastPageLabel: { type: StringConstructor; default: string; }; itemsPerPageOptions: { type: vue.PropType; default: () => { value: number; title: string; }[]; }; showCurrentPage: BooleanConstructor; customFilter: vue.PropType; customKeyFilter: vue.PropType; filterKeys: vue.PropType; filterMode: { type: vue.PropType; default: string; }; noFilter: BooleanConstructor; theme: StringConstructor; tag: { type: StringConstructor; default: string; }; density: { type: vue.PropType; default: string; validator: (v: any) => boolean; }; class: vue.PropType; style: { type: vue.PropType; default: null; }; fixedHeader: BooleanConstructor; fixedFooter: BooleanConstructor; height: (StringConstructor | NumberConstructor)[]; hover: BooleanConstructor; loading: (StringConstructor | BooleanConstructor)[]; color: StringConstructor; sticky: BooleanConstructor; multiSort: BooleanConstructor; sortAscIcon: { type: vue.PropType; default: string; }; sortDescIcon: { type: vue.PropType; default: string; }; headerProps: { type: vue.PropType>; }; sortBy: { type: vue.PropType; default: () => never[]; }; customKeySort: vue.PropType>; mustSort: BooleanConstructor; showSelect: BooleanConstructor; selectStrategy: { type: vue.PropType<"all" | "page" | "single">; default: string; }; modelValue: { type: vue.PropType; default: () => never[]; }; valueComparator: { type: vue.PropType; default: typeof deepEqual; }; items: { type: vue.PropType; default: () => never[]; }; itemValue: { type: vue.PropType; default: string; }; itemSelectable: { type: vue.PropType; default: null; }; rowProps: vue.PropType>; cellProps: vue.PropType>; returnObject: BooleanConstructor; headers: vue.PropType, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[]>; groupBy: { type: vue.PropType; default: () => never[]; }; expandOnClick: BooleanConstructor; showExpand: BooleanConstructor; expanded: { type: vue.PropType; default: () => never[]; }; width: (StringConstructor | NumberConstructor)[]; search: StringConstructor; loadingText: { type: StringConstructor; default: string; }; hideNoData: BooleanConstructor; noDataText: { type: StringConstructor; default: string; }; page: { type: (StringConstructor | NumberConstructor)[]; default: number; }; itemsPerPage: { type: (StringConstructor | NumberConstructor)[]; default: number; }; }, vue.ExtractPropTypes<{ prevIcon: { type: StringConstructor; default: string; }; nextIcon: { type: StringConstructor; default: string; }; firstIcon: { type: StringConstructor; default: string; }; lastIcon: { type: StringConstructor; default: string; }; itemsPerPageText: { type: StringConstructor; default: string; }; pageText: { type: StringConstructor; default: string; }; firstPageLabel: { type: StringConstructor; default: string; }; prevPageLabel: { type: StringConstructor; default: string; }; nextPageLabel: { type: StringConstructor; default: string; }; lastPageLabel: { type: StringConstructor; default: string; }; itemsPerPageOptions: { type: vue.PropType; default: () => { value: number; title: string; }[]; }; showCurrentPage: BooleanConstructor; customFilter: vue.PropType; customKeyFilter: vue.PropType; filterKeys: vue.PropType; filterMode: { type: vue.PropType; default: string; }; noFilter: BooleanConstructor; theme: StringConstructor; tag: { type: StringConstructor; default: string; }; density: { type: vue.PropType; default: string; validator: (v: any) => boolean; }; class: vue.PropType; style: { type: vue.PropType; default: null; }; fixedHeader: BooleanConstructor; fixedFooter: BooleanConstructor; height: (StringConstructor | NumberConstructor)[]; hover: BooleanConstructor; loading: (StringConstructor | BooleanConstructor)[]; color: StringConstructor; sticky: BooleanConstructor; multiSort: BooleanConstructor; sortAscIcon: { type: vue.PropType; default: string; }; sortDescIcon: { type: vue.PropType; default: string; }; headerProps: { type: vue.PropType>; }; sortBy: { type: vue.PropType; default: () => never[]; }; customKeySort: vue.PropType>; mustSort: BooleanConstructor; showSelect: BooleanConstructor; selectStrategy: { type: vue.PropType<"all" | "page" | "single">; default: string; }; modelValue: { type: vue.PropType; default: () => never[]; }; valueComparator: { type: vue.PropType; default: typeof deepEqual; }; items: { type: vue.PropType; default: () => never[]; }; itemValue: { type: vue.PropType; default: string; }; itemSelectable: { type: vue.PropType; default: null; }; rowProps: vue.PropType>; cellProps: vue.PropType>; returnObject: BooleanConstructor; headers: vue.PropType, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[]>; groupBy: { type: vue.PropType; default: () => never[]; }; expandOnClick: BooleanConstructor; showExpand: BooleanConstructor; expanded: { type: vue.PropType; default: () => never[]; }; width: (StringConstructor | NumberConstructor)[]; search: StringConstructor; loadingText: { type: StringConstructor; default: string; }; hideNoData: BooleanConstructor; noDataText: { type: StringConstructor; default: string; }; page: { type: (StringConstructor | NumberConstructor)[]; default: number; }; itemsPerPage: { type: (StringConstructor | NumberConstructor)[]; default: number; }; }>>; type VDataTable = InstanceType; declare const VDataTableFooter: { new (...args: any[]): vue.CreateComponentPublicInstance<{ itemsPerPageText: string; pageText: string; nextIcon: string; prevIcon: string; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; } & {} & { $children?: {} | vue.VNodeChild | { prepend?: (() => vue.VNodeChild) | undefined; }; 'v-slots'?: { prepend?: false | (() => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined; }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & { itemsPerPageText: string; pageText: string; nextIcon: string; prevIcon: string; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; } & {} & { $children?: {} | vue.VNodeChild | { prepend?: (() => vue.VNodeChild) | undefined; }; 'v-slots'?: { prepend?: false | (() => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined; }, { itemsPerPageText: string; pageText: string; nextIcon: string; prevIcon: string; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; }, true, {}, vue.SlotsType vue.VNode[]; }>>, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, { itemsPerPageText: string; pageText: string; nextIcon: string; prevIcon: string; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; } & {} & { $children?: {} | vue.VNodeChild | { prepend?: (() => vue.VNodeChild) | undefined; }; 'v-slots'?: { prepend?: false | (() => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined; }, {}, {}, {}, {}, { itemsPerPageText: string; pageText: string; nextIcon: string; prevIcon: string; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; }>; __isFragment?: undefined; __isTeleport?: undefined; __isSuspense?: undefined; } & vue.ComponentOptionsBase<{ itemsPerPageText: string; pageText: string; nextIcon: string; prevIcon: string; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; } & {} & { $children?: {} | vue.VNodeChild | { prepend?: (() => vue.VNodeChild) | undefined; }; 'v-slots'?: { prepend?: false | (() => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined; }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record, string, { itemsPerPageText: string; pageText: string; nextIcon: string; prevIcon: string; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; }, {}, string, vue.SlotsType vue.VNode[]; }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{ prevIcon: { type: StringConstructor; default: string; }; nextIcon: { type: StringConstructor; default: string; }; firstIcon: { type: StringConstructor; default: string; }; lastIcon: { type: StringConstructor; default: string; }; itemsPerPageText: { type: StringConstructor; default: string; }; pageText: { type: StringConstructor; default: string; }; firstPageLabel: { type: StringConstructor; default: string; }; prevPageLabel: { type: StringConstructor; default: string; }; nextPageLabel: { type: StringConstructor; default: string; }; lastPageLabel: { type: StringConstructor; default: string; }; itemsPerPageOptions: { type: PropType; default: () => { value: number; title: string; }[]; }; showCurrentPage: BooleanConstructor; }, vue.ExtractPropTypes<{ prevIcon: { type: StringConstructor; default: string; }; nextIcon: { type: StringConstructor; default: string; }; firstIcon: { type: StringConstructor; default: string; }; lastIcon: { type: StringConstructor; default: string; }; itemsPerPageText: { type: StringConstructor; default: string; }; pageText: { type: StringConstructor; default: string; }; firstPageLabel: { type: StringConstructor; default: string; }; prevPageLabel: { type: StringConstructor; default: string; }; nextPageLabel: { type: StringConstructor; default: string; }; lastPageLabel: { type: StringConstructor; default: string; }; itemsPerPageOptions: { type: PropType; default: () => { value: number; title: string; }[]; }; showCurrentPage: BooleanConstructor; }>>; type VDataTableVirtualSlotProps = Omit, 'setItemsPerPage' | 'page' | 'pageCount' | 'itemsPerPage'>; type VDataTableVirtualSlots = VDataTableRowsSlots & VDataTableHeadersSlots & { colgroup: VDataTableVirtualSlotProps; top: VDataTableVirtualSlotProps; headers: VDataTableHeadersSlots['headers']; bottom: VDataTableVirtualSlotProps; 'body.prepend': VDataTableVirtualSlotProps; 'body.append': VDataTableVirtualSlotProps; item: { itemRef: Ref; }; }; type ItemType$1 = T extends readonly (infer U)[] ? U : never; declare const VDataTableVirtual: { new (...args: any[]): vue.CreateComponentPublicInstance<{ style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; sortBy: readonly SortItem[]; density: Density; valueComparator: typeof deepEqual; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; itemHeight: string | number; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customFilter?: FilterFunction | undefined; customKeyFilter?: FilterKeyFunctions | undefined; filterKeys?: FilterKeys | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((value: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((value: any) => any) | undefined; "onUpdate:options"?: ((value: any) => any) | undefined; }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any[]) => boolean; 'update:sortBy': (value: any) => boolean; 'update:options': (value: any) => boolean; 'update:groupBy': (value: any) => boolean; 'update:expanded': (value: any) => boolean; }, "$children" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:colgroup" | "v-slot:body.prepend" | "v-slot:body.append">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & { style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; sortBy: readonly SortItem[]; density: Density; valueComparator: typeof deepEqual; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; itemHeight: string | number; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customFilter?: FilterFunction | undefined; customKeyFilter?: FilterKeyFunctions | undefined; filterKeys?: FilterKeys | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((value: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((value: any) => any) | undefined; "onUpdate:options"?: ((value: any) => any) | undefined; }, { style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; sortBy: readonly SortItem[]; density: Density; valueComparator: typeof deepEqual; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; itemHeight: string | number; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; }, true, {}, vue.SlotsType) => vue.VNode[]; [x: `header.${string}`]: (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'data-table-group': (arg: { item: Group; count: number; props: Record; }) => vue.VNode[]; 'data-table-select': (arg: { props: Record; }) => vue.VNode[]; 'item.data-table-select': (arg: Omit, "value">) => vue.VNode[]; 'item.data-table-expand': (arg: Omit, "value">) => vue.VNode[]; item: (arg: { index: number; item: any; internalItem: DataTableItem; isExpanded: (item: DataTableItem) => boolean; toggleExpand: (item: DataTableItem) => void; isSelected: (items: SelectableItem | SelectableItem[]) => boolean; toggleSelect: (item: SelectableItem) => void; } & { columns: InternalDataTableHeader[]; } & { props: Record; } & { itemRef: Ref; }) => vue.VNode[]; loading: () => vue.VNode[]; 'group-header': (arg: GroupHeaderSlot) => vue.VNode[]; 'no-data': () => vue.VNode[]; 'expanded-row': (arg: ItemSlot) => vue.VNode[]; headers: (arg: HeadersSlotProps) => vue.VNode[]; loader: (arg: LoaderSlotProps) => vue.VNode[]; 'header.data-table-select': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'header.data-table-expand': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; colgroup: (arg: VDataTableVirtualSlotProps) => vue.VNode[]; top: (arg: VDataTableVirtualSlotProps) => vue.VNode[]; bottom: (arg: VDataTableVirtualSlotProps) => vue.VNode[]; 'body.prepend': (arg: VDataTableVirtualSlotProps) => vue.VNode[]; 'body.append': (arg: VDataTableVirtualSlotProps) => vue.VNode[]; }>>, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, { style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; sortBy: readonly SortItem[]; density: Density; valueComparator: typeof deepEqual; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; itemHeight: string | number; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customFilter?: FilterFunction | undefined; customKeyFilter?: FilterKeyFunctions | undefined; filterKeys?: FilterKeys | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((value: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((value: any) => any) | undefined; "onUpdate:options"?: ((value: any) => any) | undefined; }, {}, {}, {}, {}, { style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; sortBy: readonly SortItem[]; density: Density; valueComparator: typeof deepEqual; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; itemHeight: string | number; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; }>; __isFragment?: undefined; __isTeleport?: undefined; __isSuspense?: undefined; } & vue.ComponentOptionsBase<{ style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; sortBy: readonly SortItem[]; density: Density; valueComparator: typeof deepEqual; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; itemHeight: string | number; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customFilter?: FilterFunction | undefined; customKeyFilter?: FilterKeyFunctions | undefined; filterKeys?: FilterKeys | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((value: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((value: any) => any) | undefined; "onUpdate:options"?: ((value: any) => any) | undefined; }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any[]) => boolean; 'update:sortBy': (value: any) => boolean; 'update:options': (value: any) => boolean; 'update:groupBy': (value: any) => boolean; 'update:expanded': (value: any) => boolean; }, "$children" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:colgroup" | "v-slot:body.prepend" | "v-slot:body.append">, string, { style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; sortBy: readonly SortItem[]; density: Density; valueComparator: typeof deepEqual; selectStrategy: "all" | "page" | "single"; returnObject: boolean; filterMode: FilterMode; noFilter: boolean; itemHeight: string | number; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; }, {}, string, vue.SlotsType) => vue.VNode[]; [x: `header.${string}`]: (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'data-table-group': (arg: { item: Group; count: number; props: Record; }) => vue.VNode[]; 'data-table-select': (arg: { props: Record; }) => vue.VNode[]; 'item.data-table-select': (arg: Omit, "value">) => vue.VNode[]; 'item.data-table-expand': (arg: Omit, "value">) => vue.VNode[]; item: (arg: { index: number; item: any; internalItem: DataTableItem; isExpanded: (item: DataTableItem) => boolean; toggleExpand: (item: DataTableItem) => void; isSelected: (items: SelectableItem | SelectableItem[]) => boolean; toggleSelect: (item: SelectableItem) => void; } & { columns: InternalDataTableHeader[]; } & { props: Record; } & { itemRef: Ref; }) => vue.VNode[]; loading: () => vue.VNode[]; 'group-header': (arg: GroupHeaderSlot) => vue.VNode[]; 'no-data': () => vue.VNode[]; 'expanded-row': (arg: ItemSlot) => vue.VNode[]; headers: (arg: HeadersSlotProps) => vue.VNode[]; loader: (arg: LoaderSlotProps) => vue.VNode[]; 'header.data-table-select': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'header.data-table-expand': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; colgroup: (arg: VDataTableVirtualSlotProps) => vue.VNode[]; top: (arg: VDataTableVirtualSlotProps) => vue.VNode[]; bottom: (arg: VDataTableVirtualSlotProps) => vue.VNode[]; 'body.prepend': (arg: VDataTableVirtualSlotProps) => vue.VNode[]; 'body.append': (arg: VDataTableVirtualSlotProps) => vue.VNode[]; }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new (props: { items?: T | undefined; itemValue?: SelectItemKey>; rowProps?: RowProps> | undefined; cellProps?: CellProps> | undefined; itemSelectable?: SelectItemKey>; modelValue?: V | undefined; 'onUpdate:modelValue'?: ((value: V) => void) | undefined; }, slots: VDataTableVirtualSlots>) => GenericProps<{ items?: T | undefined; itemValue?: SelectItemKey>; rowProps?: RowProps> | undefined; cellProps?: CellProps> | undefined; itemSelectable?: SelectItemKey>; modelValue?: V | undefined; 'onUpdate:modelValue'?: ((value: V) => void) | undefined; }, VDataTableVirtualSlots>>) & FilterPropsOptions<{ customFilter: vue.PropType; customKeyFilter: vue.PropType; filterKeys: vue.PropType; filterMode: { type: vue.PropType; default: string; }; noFilter: BooleanConstructor; itemHeight: { type: (StringConstructor | NumberConstructor)[]; default: null; }; height: (StringConstructor | NumberConstructor)[]; groupBy: { type: vue.PropType; default: () => never[]; }; theme: StringConstructor; tag: { type: StringConstructor; default: string; }; density: { type: vue.PropType; default: string; validator: (v: any) => boolean; }; class: vue.PropType; style: { type: vue.PropType; default: null; }; fixedHeader: BooleanConstructor; fixedFooter: BooleanConstructor; hover: BooleanConstructor; loading: (StringConstructor | BooleanConstructor)[]; color: StringConstructor; sticky: BooleanConstructor; multiSort: BooleanConstructor; sortAscIcon: { type: vue.PropType; default: string; }; sortDescIcon: { type: vue.PropType; default: string; }; headerProps: { type: vue.PropType>; }; sortBy: { type: vue.PropType; default: () => never[]; }; customKeySort: vue.PropType>; mustSort: BooleanConstructor; showSelect: BooleanConstructor; selectStrategy: { type: vue.PropType<"all" | "page" | "single">; default: string; }; modelValue: { type: vue.PropType; default: () => never[]; }; valueComparator: { type: vue.PropType; default: typeof deepEqual; }; items: { type: vue.PropType; default: () => never[]; }; itemValue: { type: vue.PropType; default: string; }; itemSelectable: { type: vue.PropType; default: null; }; rowProps: vue.PropType>; cellProps: vue.PropType>; returnObject: BooleanConstructor; headers: vue.PropType, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[]>; expandOnClick: BooleanConstructor; showExpand: BooleanConstructor; expanded: { type: vue.PropType; default: () => never[]; }; width: (StringConstructor | NumberConstructor)[]; search: StringConstructor; loadingText: { type: StringConstructor; default: string; }; hideNoData: BooleanConstructor; noDataText: { type: StringConstructor; default: string; }; }, vue.ExtractPropTypes<{ customFilter: vue.PropType; customKeyFilter: vue.PropType; filterKeys: vue.PropType; filterMode: { type: vue.PropType; default: string; }; noFilter: BooleanConstructor; itemHeight: { type: (StringConstructor | NumberConstructor)[]; default: null; }; height: (StringConstructor | NumberConstructor)[]; groupBy: { type: vue.PropType; default: () => never[]; }; theme: StringConstructor; tag: { type: StringConstructor; default: string; }; density: { type: vue.PropType; default: string; validator: (v: any) => boolean; }; class: vue.PropType; style: { type: vue.PropType; default: null; }; fixedHeader: BooleanConstructor; fixedFooter: BooleanConstructor; hover: BooleanConstructor; loading: (StringConstructor | BooleanConstructor)[]; color: StringConstructor; sticky: BooleanConstructor; multiSort: BooleanConstructor; sortAscIcon: { type: vue.PropType; default: string; }; sortDescIcon: { type: vue.PropType; default: string; }; headerProps: { type: vue.PropType>; }; sortBy: { type: vue.PropType; default: () => never[]; }; customKeySort: vue.PropType>; mustSort: BooleanConstructor; showSelect: BooleanConstructor; selectStrategy: { type: vue.PropType<"all" | "page" | "single">; default: string; }; modelValue: { type: vue.PropType; default: () => never[]; }; valueComparator: { type: vue.PropType; default: typeof deepEqual; }; items: { type: vue.PropType; default: () => never[]; }; itemValue: { type: vue.PropType; default: string; }; itemSelectable: { type: vue.PropType; default: null; }; rowProps: vue.PropType>; cellProps: vue.PropType>; returnObject: BooleanConstructor; headers: vue.PropType, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[]>; expandOnClick: BooleanConstructor; showExpand: BooleanConstructor; expanded: { type: vue.PropType; default: () => never[]; }; width: (StringConstructor | NumberConstructor)[]; search: StringConstructor; loadingText: { type: StringConstructor; default: string; }; hideNoData: BooleanConstructor; noDataText: { type: StringConstructor; default: string; }; }>>; type VDataTableVirtual = InstanceType; type ItemType = T extends readonly (infer U)[] ? U : never; declare const VDataTableServer: { new (...args: any[]): vue.CreateComponentPublicInstance<{ page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; itemsLength: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((options: any) => any) | undefined; "onUpdate:page"?: ((page: number) => any) | undefined; "onUpdate:itemsPerPage"?: ((page: number) => any) | undefined; "onUpdate:options"?: ((options: any) => any) | undefined; }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any[]) => boolean; 'update:page': (page: number) => boolean; 'update:itemsPerPage': (page: number) => boolean; 'update:sortBy': (sortBy: any) => boolean; 'update:options': (options: any) => boolean; 'update:expanded': (options: any) => boolean; 'update:groupBy': (value: any) => boolean; }, "$children" | "v-slot:default" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & { page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; itemsLength: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((options: any) => any) | undefined; "onUpdate:page"?: ((page: number) => any) | undefined; "onUpdate:itemsPerPage"?: ((page: number) => any) | undefined; "onUpdate:options"?: ((options: any) => any) | undefined; }, { page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; }, true, {}, vue.SlotsType) => vue.VNode[]; [x: `header.${string}`]: (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'data-table-group': (arg: { item: Group; count: number; props: Record; }) => vue.VNode[]; 'data-table-select': (arg: { props: Record; }) => vue.VNode[]; 'item.data-table-select': (arg: Omit, "value">) => vue.VNode[]; 'item.data-table-expand': (arg: Omit, "value">) => vue.VNode[]; item: (arg: { index: number; item: any; internalItem: DataTableItem; isExpanded: (item: DataTableItem) => boolean; toggleExpand: (item: DataTableItem) => void; isSelected: (items: SelectableItem | SelectableItem[]) => boolean; toggleSelect: (item: SelectableItem) => void; } & { columns: InternalDataTableHeader[]; } & { props: Record; }) => vue.VNode[]; loading: () => vue.VNode[]; 'group-header': (arg: GroupHeaderSlot) => vue.VNode[]; 'no-data': () => vue.VNode[]; 'expanded-row': (arg: ItemSlot) => vue.VNode[]; headers: (arg: HeadersSlotProps) => vue.VNode[]; loader: (arg: LoaderSlotProps) => vue.VNode[]; 'header.data-table-select': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'header.data-table-expand': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; default: (arg: VDataTableSlotProps) => vue.VNode[]; colgroup: (arg: VDataTableSlotProps) => vue.VNode[]; top: (arg: VDataTableSlotProps) => vue.VNode[]; body: (arg: VDataTableSlotProps) => vue.VNode[]; tbody: (arg: VDataTableSlotProps) => vue.VNode[]; thead: (arg: VDataTableSlotProps) => vue.VNode[]; tfoot: (arg: VDataTableSlotProps) => vue.VNode[]; bottom: (arg: VDataTableSlotProps) => vue.VNode[]; 'body.prepend': (arg: VDataTableSlotProps) => vue.VNode[]; 'body.append': (arg: VDataTableSlotProps) => vue.VNode[]; 'footer.prepend': () => vue.VNode[]; }>>, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, { page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; itemsLength: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((options: any) => any) | undefined; "onUpdate:page"?: ((page: number) => any) | undefined; "onUpdate:itemsPerPage"?: ((page: number) => any) | undefined; "onUpdate:options"?: ((options: any) => any) | undefined; }, {}, {}, {}, {}, { page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; }>; __isFragment?: undefined; __isTeleport?: undefined; __isSuspense?: undefined; } & vue.ComponentOptionsBase<{ page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; itemsLength: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; } & { search?: string | undefined; height?: string | number | undefined; width?: string | number | undefined; color?: string | undefined; loading?: string | boolean | undefined; class?: any; headers?: readonly { readonly key?: (string & {}) | "data-table-group" | "data-table-select" | "data-table-expand" | undefined; readonly value?: SelectItemKey; readonly title?: string | undefined; readonly fixed?: boolean | undefined; readonly align?: "center" | "end" | "start" | undefined; readonly width?: string | number | undefined; readonly minWidth?: string | undefined; readonly maxWidth?: string | undefined; readonly headerProps?: { readonly [x: string]: any; } | undefined; readonly cellProps?: ((data: Pick, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[] | undefined; theme?: string | undefined; customKeySort?: Record | undefined; headerProps?: Record | undefined; } & { "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined; "onUpdate:groupBy"?: ((value: any) => any) | undefined; "onUpdate:expanded"?: ((options: any) => any) | undefined; "onUpdate:page"?: ((page: number) => any) | undefined; "onUpdate:itemsPerPage"?: ((page: number) => any) | undefined; "onUpdate:options"?: ((options: any) => any) | undefined; }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{ 'update:modelValue': (value: any[]) => boolean; 'update:page': (page: number) => boolean; 'update:itemsPerPage': (page: number) => boolean; 'update:sortBy': (sortBy: any) => boolean; 'update:options': (options: any) => boolean; 'update:expanded': (options: any) => boolean; 'update:groupBy': (value: any) => boolean; }, "$children" | "v-slot:default" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body" | "v-slot:colgroup" | "v-slot:tbody" | "v-slot:tfoot" | "v-slot:thead" | "v-slot:body.prepend" | "v-slot:body.append" | "v-slot:footer.prepend">, string, { page: string | number; style: vue.StyleValue; expanded: readonly string[]; tag: string; sticky: boolean; noDataText: string; loadingText: string; itemsPerPageText: string; sortBy: readonly SortItem[]; pageText: string; density: Density; valueComparator: typeof deepEqual; nextIcon: string; prevIcon: string; selectStrategy: "all" | "page" | "single"; returnObject: boolean; hideNoData: boolean; hover: boolean; multiSort: boolean; mustSort: boolean; groupBy: readonly SortItem[]; showSelect: boolean; expandOnClick: boolean; showExpand: boolean; itemsPerPage: string | number; firstIcon: string; lastIcon: string; firstPageLabel: string; prevPageLabel: string; nextPageLabel: string; lastPageLabel: string; itemsPerPageOptions: readonly (number | { title: string; value: number; })[]; showCurrentPage: boolean; sortAscIcon: IconValue; sortDescIcon: IconValue; fixedHeader: boolean; fixedFooter: boolean; }, {}, string, vue.SlotsType) => vue.VNode[]; [x: `header.${string}`]: (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'data-table-group': (arg: { item: Group; count: number; props: Record; }) => vue.VNode[]; 'data-table-select': (arg: { props: Record; }) => vue.VNode[]; 'item.data-table-select': (arg: Omit, "value">) => vue.VNode[]; 'item.data-table-expand': (arg: Omit, "value">) => vue.VNode[]; item: (arg: { index: number; item: any; internalItem: DataTableItem; isExpanded: (item: DataTableItem) => boolean; toggleExpand: (item: DataTableItem) => void; isSelected: (items: SelectableItem | SelectableItem[]) => boolean; toggleSelect: (item: SelectableItem) => void; } & { columns: InternalDataTableHeader[]; } & { props: Record; }) => vue.VNode[]; loading: () => vue.VNode[]; 'group-header': (arg: GroupHeaderSlot) => vue.VNode[]; 'no-data': () => vue.VNode[]; 'expanded-row': (arg: ItemSlot) => vue.VNode[]; headers: (arg: HeadersSlotProps) => vue.VNode[]; loader: (arg: LoaderSlotProps) => vue.VNode[]; 'header.data-table-select': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; 'header.data-table-expand': (arg: { column: InternalDataTableHeader; selectAll: (value: boolean) => void; isSorted: (column: InternalDataTableHeader) => boolean; toggleSort: (column: InternalDataTableHeader) => void; sortBy: readonly SortItem[]; someSelected: boolean; allSelected: boolean; getSortIcon: (column: InternalDataTableHeader) => IconValue; }) => vue.VNode[]; default: (arg: VDataTableSlotProps) => vue.VNode[]; colgroup: (arg: VDataTableSlotProps) => vue.VNode[]; top: (arg: VDataTableSlotProps) => vue.VNode[]; body: (arg: VDataTableSlotProps) => vue.VNode[]; tbody: (arg: VDataTableSlotProps) => vue.VNode[]; thead: (arg: VDataTableSlotProps) => vue.VNode[]; tfoot: (arg: VDataTableSlotProps) => vue.VNode[]; bottom: (arg: VDataTableSlotProps) => vue.VNode[]; 'body.prepend': (arg: VDataTableSlotProps) => vue.VNode[]; 'body.append': (arg: VDataTableSlotProps) => vue.VNode[]; 'footer.prepend': () => vue.VNode[]; }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new (props: { items?: T | undefined; itemValue?: SelectItemKey>; rowProps?: RowProps> | undefined; cellProps?: CellProps> | undefined; itemSelectable?: SelectItemKey>; modelValue?: V | undefined; 'onUpdate:modelValue'?: ((value: V) => void) | undefined; }, slots: VDataTableSlots>) => GenericProps<{ items?: T | undefined; itemValue?: SelectItemKey>; rowProps?: RowProps> | undefined; cellProps?: CellProps> | undefined; itemSelectable?: SelectItemKey>; modelValue?: V | undefined; 'onUpdate:modelValue'?: ((value: V) => void) | undefined; }, VDataTableSlots>>) & FilterPropsOptions<{ prevIcon: { type: StringConstructor; default: string; }; nextIcon: { type: StringConstructor; default: string; }; firstIcon: { type: StringConstructor; default: string; }; lastIcon: { type: StringConstructor; default: string; }; itemsPerPageText: { type: StringConstructor; default: string; }; pageText: { type: StringConstructor; default: string; }; firstPageLabel: { type: StringConstructor; default: string; }; prevPageLabel: { type: StringConstructor; default: string; }; nextPageLabel: { type: StringConstructor; default: string; }; lastPageLabel: { type: StringConstructor; default: string; }; itemsPerPageOptions: { type: vue.PropType; default: () => { value: number; title: string; }[]; }; showCurrentPage: BooleanConstructor; theme: StringConstructor; tag: { type: StringConstructor; default: string; }; density: { type: vue.PropType; default: string; validator: (v: any) => boolean; }; class: vue.PropType; style: { type: vue.PropType; default: null; }; fixedHeader: BooleanConstructor; fixedFooter: BooleanConstructor; height: (StringConstructor | NumberConstructor)[]; hover: BooleanConstructor; loading: (StringConstructor | BooleanConstructor)[]; color: StringConstructor; sticky: BooleanConstructor; multiSort: BooleanConstructor; sortAscIcon: { type: vue.PropType; default: string; }; sortDescIcon: { type: vue.PropType; default: string; }; headerProps: { type: vue.PropType>; }; sortBy: { type: vue.PropType; default: () => never[]; }; customKeySort: vue.PropType>; mustSort: BooleanConstructor; showSelect: BooleanConstructor; selectStrategy: { type: vue.PropType<"all" | "page" | "single">; default: string; }; modelValue: { type: vue.PropType; default: () => never[]; }; valueComparator: { type: vue.PropType; default: typeof deepEqual; }; items: { type: vue.PropType; default: () => never[]; }; itemValue: { type: vue.PropType; default: string; }; itemSelectable: { type: vue.PropType; default: null; }; rowProps: vue.PropType>; cellProps: vue.PropType>; returnObject: BooleanConstructor; headers: vue.PropType, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[]>; groupBy: { type: vue.PropType; default: () => never[]; }; expandOnClick: BooleanConstructor; showExpand: BooleanConstructor; expanded: { type: vue.PropType; default: () => never[]; }; width: (StringConstructor | NumberConstructor)[]; search: StringConstructor; loadingText: { type: StringConstructor; default: string; }; hideNoData: BooleanConstructor; noDataText: { type: StringConstructor; default: string; }; page: { type: (StringConstructor | NumberConstructor)[]; default: number; }; itemsPerPage: { type: (StringConstructor | NumberConstructor)[]; default: number; }; itemsLength: { type: (StringConstructor | NumberConstructor)[]; required: true; }; }, vue.ExtractPropTypes<{ prevIcon: { type: StringConstructor; default: string; }; nextIcon: { type: StringConstructor; default: string; }; firstIcon: { type: StringConstructor; default: string; }; lastIcon: { type: StringConstructor; default: string; }; itemsPerPageText: { type: StringConstructor; default: string; }; pageText: { type: StringConstructor; default: string; }; firstPageLabel: { type: StringConstructor; default: string; }; prevPageLabel: { type: StringConstructor; default: string; }; nextPageLabel: { type: StringConstructor; default: string; }; lastPageLabel: { type: StringConstructor; default: string; }; itemsPerPageOptions: { type: vue.PropType; default: () => { value: number; title: string; }[]; }; showCurrentPage: BooleanConstructor; theme: StringConstructor; tag: { type: StringConstructor; default: string; }; density: { type: vue.PropType; default: string; validator: (v: any) => boolean; }; class: vue.PropType; style: { type: vue.PropType; default: null; }; fixedHeader: BooleanConstructor; fixedFooter: BooleanConstructor; height: (StringConstructor | NumberConstructor)[]; hover: BooleanConstructor; loading: (StringConstructor | BooleanConstructor)[]; color: StringConstructor; sticky: BooleanConstructor; multiSort: BooleanConstructor; sortAscIcon: { type: vue.PropType; default: string; }; sortDescIcon: { type: vue.PropType; default: string; }; headerProps: { type: vue.PropType>; }; sortBy: { type: vue.PropType; default: () => never[]; }; customKeySort: vue.PropType>; mustSort: BooleanConstructor; showSelect: BooleanConstructor; selectStrategy: { type: vue.PropType<"all" | "page" | "single">; default: string; }; modelValue: { type: vue.PropType; default: () => never[]; }; valueComparator: { type: vue.PropType; default: typeof deepEqual; }; items: { type: vue.PropType; default: () => never[]; }; itemValue: { type: vue.PropType; default: string; }; itemSelectable: { type: vue.PropType; default: null; }; rowProps: vue.PropType>; cellProps: vue.PropType>; returnObject: BooleanConstructor; headers: vue.PropType, "index" | "item" | "value" | "internalItem">) => Record) | { readonly [x: string]: any; } | undefined; readonly sortable?: boolean | undefined; readonly sort?: DataTableCompareFunction | undefined; readonly sortRaw?: DataTableCompareFunction | undefined; readonly filter?: FilterFunction | undefined; readonly children?: readonly any[] | undefined; }[]>; groupBy: { type: vue.PropType; default: () => never[]; }; expandOnClick: BooleanConstructor; showExpand: BooleanConstructor; expanded: { type: vue.PropType; default: () => never[]; }; width: (StringConstructor | NumberConstructor)[]; search: StringConstructor; loadingText: { type: StringConstructor; default: string; }; hideNoData: BooleanConstructor; noDataText: { type: StringConstructor; default: string; }; page: { type: (StringConstructor | NumberConstructor)[]; default: number; }; itemsPerPage: { type: (StringConstructor | NumberConstructor)[]; default: number; }; itemsLength: { type: (StringConstructor | NumberConstructor)[]; required: true; }; }>>; type VDataTableServer = InstanceType; export { VDataTable, VDataTableFooter, VDataTableRow, VDataTableRows, VDataTableServer, VDataTableVirtual };