/// /*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { IColumn, IIconStyles } from '@fluentui/react'; import type { ColumnSelectFunction } from '../ArqueroDetailsList.types.js'; export declare function useContainerStyle(column: IColumn): React.CSSProperties; export declare function useTextStyle(column: IColumn, isClickable: boolean): React.CSSProperties; export declare function useIconStyles(): IIconStyles; export declare function useDelegatedColumnClickHandler(column: IColumn | undefined, delegate: ColumnSelectFunction | undefined): (e: React.MouseEvent) => void;