import * as React from 'react';
export interface CellPopupProps {
    isOpen: boolean;
    columnId: string;
    primaryKeyValue: number | string;
    className?: string;
}
export type CellPopupHandle = {
    refreshContent: () => void;
};
export declare const CellPopup: React.ForwardRefExoticComponent<CellPopupProps & {
    children?: React.ReactNode;
} & React.RefAttributes<CellPopupHandle>>;
