import type { SlotsContextProps, TableColumnType } from './interface'; export declare function useProvideSlots(props: SlotsContextProps): void; export declare function useInjectSlots(): SlotsContextProps; interface ContextProps { onResizeColumn: (w: number, column: TableColumnType) => void; } export declare function useProvideTableContext(props: ContextProps): void; export declare function useInjectTableContext(): ContextProps; export {};