export function formatLines(text: any): any; export function mergeFragments(fragments: any): any; export function ContextBoxValue({ label, children }: { label: any; children: any; }): JSX.Element; export namespace ContextBoxValue { namespace propTypes { const label: PropTypes.Requireable; const children: PropTypes.Requireable; } } export default ContextBox; import PropTypes from "prop-types"; declare function ContextBox({ orientation: yOrientation, x, y, contextWidth, children }: { orientation: any; x: any; y: any; contextWidth: any; children: any; }): JSX.Element; declare namespace ContextBox { export namespace defaultProps { const orientation: string; } export namespace propTypes_1 { export const x: PropTypes.Validator; export const y: PropTypes.Validator; export const contextWidth: PropTypes.Validator; const orientation_1: PropTypes.Validator; export { orientation_1 as orientation }; const children_1: PropTypes.Requireable; export { children_1 as children }; } export { propTypes_1 as propTypes }; }