import * as React from "react"; import "./BeeTableEditableCellContent.css"; export interface BeeTableEditableCellContentProps { value: string; onChange: (value: string) => void; isReadOnly: boolean; isEditing: boolean; isActive: boolean; setEditing: React.Dispatch>; onFeelTabKeyDown?: (args: { isShiftPressed: boolean; }) => void; onFeelEnterKeyDown?: (args: { isShiftPressed: boolean; }) => void; expressionId?: string; } export declare function BeeTableEditableCellContent({ value, onChange, isReadOnly, isEditing, isActive, setEditing, onFeelTabKeyDown, onFeelEnterKeyDown, expressionId, }: BeeTableEditableCellContentProps): JSX.Element; //# sourceMappingURL=BeeTableEditableCellContent.d.ts.map