interface Props { /** * Sets the `table-layout` property */ fixed?: boolean; /** * Table cells with content overflowing on new line will be cropped */ nowrap?: boolean; /** * Add a visual separator between each row */ separateRows?: boolean; /** * Add a visual separator between each cell */ separateCells?: boolean; /** * Wrap table with a border */ outerBorder?: boolean; /** * Pins the selected so it stays visible while user scrolls the table horizontally */ pin?: 'first' | 'last' | 'both'; /** * Enable automatic horizontal scrolling if table content ovetflows its container */ scroll?: boolean; } declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}; type __VLS_Slots = {} & { header?: (props: typeof __VLS_1) => any; } & { body?: (props: typeof __VLS_3) => any; } & { pagination?: (props: typeof __VLS_5) => any; }; declare const __VLS_base: import('vue').DefineComponent & Readonly<{}>, {}, {}, {}, {}, 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; }; };