import { ColumnType } from '@toolbox-web/grid'; import { VNode } from 'vue'; import { ColumnOptions } from './column-options'; import { CellSlotProps, EditorSlotProps, HeaderLabelSlotProps, HeaderSlotProps } from './slot-types'; declare const _default: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: __VLS_PrettifyLocal & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, never> & { /** Field path in the row object */ field: string; /** Column header text */ header?: string; /** Data type for the column */ type?: ColumnType; /** Column width */ width?: string | number; /** Minimum column width */ minWidth?: string | number; /** Initial column display index */ order?: number; /** Whether the column is sortable */ sortable?: boolean; /** Whether the column is resizable */ resizable?: boolean; /** Whether the column is editable */ editable?: boolean; /** Whether the column is hidden */ hidden?: boolean; /** Prevent the column from being hidden */ lockVisible?: boolean; /** * Select/typeahead options. Serialized onto the element's `options` * attribute, so values and labels must not contain `,` or `:` — pass * richer option objects through `gridConfig.columns[].options` instead. */ options?: ColumnOptions; } & Partial<{}>> & import('vue').PublicProps; expose(exposed: import('vue').ShallowUnwrapRef<{}>): void; attrs: any; slots: Readonly<{ /** Custom cell renderer slot */ cell?: (props: CellSlotProps) => VNode[]; /** Custom cell editor slot */ editor?: (props: EditorSlotProps) => VNode[]; /** * Full header cell renderer slot. Consumer owns sort icons and filter * buttons — use the `renderSortIcon` / `renderFilterButton` helpers on * the slot props to opt in. Resize handles are appended automatically * by the grid for resizable columns; do not render one yourself. */ header?: (props: HeaderSlotProps) => VNode[]; /** * Header label renderer slot. Grid keeps ownership of sort icons, * filter buttons, and resize handles; the slot content only replaces * the label text. */ headerLabel?: (props: HeaderLabelSlotProps) => VNode[]; }> & { /** Custom cell renderer slot */ cell?: (props: CellSlotProps) => VNode[]; /** Custom cell editor slot */ editor?: (props: EditorSlotProps) => VNode[]; /** * Full header cell renderer slot. Consumer owns sort icons and filter * buttons — use the `renderSortIcon` / `renderFilterButton` helpers on * the slot props to opt in. Resize handles are appended automatically * by the grid for resizable columns; do not render one yourself. */ header?: (props: HeaderSlotProps) => VNode[]; /** * Header label renderer slot. Grid keeps ownership of sort icons, * filter buttons, and resize handles; the slot content only replaces * the label text. */ headerLabel?: (props: HeaderLabelSlotProps) => VNode[]; }; emit: {}; }>) => import('vue').VNode & { __ctx?: Awaited; }; export default _default; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {}; //# sourceMappingURL=TbwGridColumn.vue.d.ts.map