/// /** * Editable Text is used for inline renaming of some text. It appears as normal UI text but transforms into a text input field when the user clicks on or focuses it. * The text input inherits all font styling from its parent in order to make the edit and read view transition seamless. * Chakra UI exports 3 components to handle this functionality. Editable: The wrapper component that provides context value. EditableInput: The edit view of the component. It shows when you click or focus on the text. EditablePreview: The read-only view of the component. * https://chakra-ui.com/docs/form/editable */ export declare function Editable({ ...props }: any): JSX.Element; export declare function EditableInput({ ...props }: any): JSX.Element; export declare function EditablePreview({ ...props }: any): JSX.Element; //# sourceMappingURL=Editable.d.ts.map