import type { CSSProperties, UnwrapRef } from 'vue'; import type { TableV2HeaderProps } from '../header'; import type { UseColumnsReturn } from '../composables/use-columns'; declare const TableV2Header: import("@vue/runtime-core").DefineComponent<{ readonly class: StringConstructor; readonly columns: { readonly type: import("@vue/runtime-core").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly fixedHeaderData: { readonly type: import("@vue/runtime-core").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly headerData: { readonly type: import("@vue/runtime-core").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly headerHeight: import("packages/web/vue-utils/dist").EpPropFinalized<(new (...args: any[]) => (number | number[]) & {}) | (() => number | number[]) | ((new (...args: any[]) => (number | number[]) & {}) | (() => number | number[]))[], unknown, unknown, 50, boolean>; readonly rowWidth: { readonly type: import("@vue/runtime-core").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly rowHeight: import("packages/web/vue-utils/dist").EpPropFinalized; readonly height: { readonly type: import("@vue/runtime-core").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly width: { readonly type: import("@vue/runtime-core").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }, () => JSX.Element | undefined, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, Record, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly fixedHeaderData: { readonly type: import("@vue/runtime-core").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly headerData: { readonly type: import("@vue/runtime-core").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly headerHeight: import("packages/web/vue-utils/dist").EpPropFinalized<(new (...args: any[]) => (number | number[]) & {}) | (() => number | number[]) | ((new (...args: any[]) => (number | number[]) & {}) | (() => number | number[]))[], unknown, unknown, 50, boolean>; readonly rowWidth: { readonly type: import("@vue/runtime-core").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly rowHeight: import("packages/web/vue-utils/dist").EpPropFinalized; readonly height: { readonly type: import("@vue/runtime-core").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly width: { readonly type: import("@vue/runtime-core").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }>>, { readonly rowHeight: number; readonly headerHeight: import("packages/web/vue-utils/dist").EpPropMergeType<(new (...args: any[]) => (number | number[]) & {}) | (() => number | number[]) | ((new (...args: any[]) => (number | number[]) & {}) | (() => number | number[]))[], unknown, unknown>; }>; export default TableV2Header; export declare type TableV2HeaderInstance = InstanceType & { /** * @description scroll to position based on the provided value */ scrollToLeft: (left?: number) => void; }; export declare type TableV2HeaderRendererParams = { class: string; columns: TableV2HeaderProps['columns']; columnsStyles: UnwrapRef; headerIndex: number; style: CSSProperties; }; export declare type TableV2HeaderRowRendererParams = { rowData: any; rowIndex: number; } & Omit;