import type { DataTableAction, DataTableHeader, DataTableItem, DataTablePagination } from './types'; export type SbDataTableProps = { actions?: DataTableAction[]; allowSelection?: boolean; headers?: DataTableHeader[]; hideHeader?: boolean; isLoading?: boolean; keepSelectedOnChange?: boolean; items?: DataTableItem[]; selectedItems?: DataTableItem[]; striped?: boolean; stickyMenu?: boolean; hideActionsMenu?: boolean; isSortIconAlwaysVisible?: boolean; pagination?: DataTablePagination; rowIdPrefix?: string; loadingAnnouncement?: string; caption?: string; rowFieldIdentifier?: string; ariaLabelledby?: string; ariaDescribedby?: string; visuallyHideHeader?: boolean; }; declare var __VLS_30: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_30) => any; }; declare const __VLS_base: import("vue").DefineComponent any; "emit-action": (value: string) => any; "selected-rows": (value: DataTableItem[]) => any; }, string, import("vue").PublicProps, Readonly & Readonly<{ onCancel?: (() => any) | undefined; "onEmit-action"?: ((value: string) => any) | undefined; "onSelected-rows"?: ((value: DataTableItem[]) => any) | undefined; }>, { isLoading: boolean; items: DataTableItem[]; actions: DataTableAction[]; allowSelection: boolean; headers: DataTableHeader[]; isSortIconAlwaysVisible: boolean; hideHeader: boolean; visuallyHideHeader: boolean; rowIdPrefix: string; keepSelectedOnChange: boolean; selectedItems: DataTableItem[]; striped: boolean; stickyMenu: boolean; hideActionsMenu: boolean; rowFieldIdentifier: string; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };