/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { IColumn } from '@fluentui/react'; import type React from 'react'; import type { CellContainerProps } from './CellContainer.types.js'; export declare function useHandleColumnClick(column: IColumn | undefined, onClick: CellContainerProps['onClick']): (ev: React.MouseEvent) => void; export declare function useCellStyle(column: IColumn | undefined, onClick: CellContainerProps['onClick']): React.CSSProperties;