14 lines
422 B
TypeScript
14 lines
422 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface EditablePreviewProps extends HTMLChakraProps<"div"> {
|
|
}
|
|
/**
|
|
* EditablePreview
|
|
*
|
|
* The `span` used to display the final value, in the `preview` mode
|
|
*/
|
|
declare const EditablePreview: _chakra_ui_system.ComponentWithAs<"span", EditablePreviewProps>;
|
|
|
|
export { EditablePreview, EditablePreviewProps };
|