/** * -------------------------------------------------------------------------- * CoreUI PRO react-data-grid pinning.ts * License (https://coreui.io/pro/license/) * -------------------------------------------------------------------------- */ import type { CSSProperties } from 'react'; import type { CDataGridColumnInstance } from './types'; export interface PinnedCellProps { className?: string; style?: CSSProperties; } export interface PinnedEdges { lastStart: string | null; firstEnd: string | null; } export declare const pinnedColumnProps: (column: CDataGridColumnInstance, selectPinned: boolean, edges: PinnedEdges) => PinnedCellProps; export declare const selectCellPinnedProps: (selectPinned: boolean) => PinnedCellProps;