import React from 'react'; import { InputProps } from '../form/Input/Input'; export declare type EditableTextProps = InputProps & { textSize?: 'heading-large' | 'heading-medium' | 'heading-small' | 'heading-x-small' | 'body-text-large' | 'body-text-medium' | 'body-text-small' | 'body-text-x-small'; }; declare const EditableText: React.ForwardRefExoticComponent>; export default EditableText;