import React from 'react'; import './ModuleCell.css'; export declare const KEYS: { readonly ENTER: "Enter"; readonly SPACE: " "; readonly TAB: "Tab"; readonly ARROW_UP: "ArrowUp"; readonly ARROW_DOWN: "ArrowDown"; readonly ARROW_LEFT: "ArrowLeft"; readonly ARROW_RIGHT: "ArrowRight"; readonly ESCAPE: "Escape"; readonly c: "c"; }; export declare const isEnterPressed: (key: string) => boolean; export declare const TextClipBoard: ({ text, copyLabel, testId }: { text: any; copyLabel: any; testId?: string; }) => React.JSX.Element; interface PropsTwoLayerTextDisplay { primaryText: string; secondaryText?: string; isPrimaryTextWithDate?: boolean; testId?: string; hasVariantPlanEnabled?: boolean; data?: any; isVariantForTask?: boolean; } export declare const TwoLayerTextDisplay: (props: PropsTwoLayerTextDisplay) => React.JSX.Element; export {};