import type { StashColorNamesWithShades } from '@leaflink/stash-types/colors'; import { type VNode } from 'vue'; export interface TableRowProps { hideExpansionDivider?: boolean; isExpanded?: boolean; isSelected?: boolean; isSelectDisabled?: boolean; /** * The accent color for the TableRow. */ accentColor?: StashColorNamesWithShades; } type __VLS_Slots = { default(props: { isRowExpanded?: boolean; toggleExpand: (value?: boolean) => void; }): VNode[]; expansion(): unknown[]; }; declare const __VLS_base: import("vue").DefineComponent any; "update:isExpanded": (isExpanded: boolean) => any; }, string, import("vue").PublicProps, Readonly & Readonly<{ "onUpdate:isSelected"?: ((isChecked: boolean | (string | number)[]) => any) | undefined; "onUpdate:isExpanded"?: ((isExpanded: boolean) => any) | undefined; }>, { isExpanded: boolean; hideExpansionDivider: boolean; isSelected: boolean; isSelectDisabled: boolean; accentColor: StashColorNamesWithShades; }, {}, {}, {}, 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; }; };