/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { OrderbyInstruction } from '@datashaper/schema'; import type { IDropdownOption } from '@fluentui/react'; export declare function useHandleColumnChange(order: OrderbyInstruction, onChange: ((order: OrderbyInstruction) => void) | undefined): (e: any, option: IDropdownOption | undefined) => void; export declare function useHandleDirectionClick(order: OrderbyInstruction, onChange: ((order: OrderbyInstruction) => void) | undefined): () => void;