import { Side } from '@lattice-php/ui'; export type PinnableColumn = { key: string; props: { pinned?: Side | null; }; }; export declare function useColumnPinning({ columns, storageKey, }: { columns: TColumn[]; storageKey?: string; }): { hasPinOverrides: boolean; pinFor: (column: TColumn) => Side | null; resetPins: () => any; setColumnPin: (key: string, side: Side | null) => void; };