import React from 'react'; import { Props as DrawerProps } from '../../components/Drawer'; import { LayoutOption } from '../../context/StateProvider'; interface Props extends Omit { onLayoutChange?: (layout: LayoutOption) => void; } /** * Uses current global state to control the content of the editor dawer. */ declare const EditorDrawer: React.ForwardRefExoticComponent & React.RefAttributes>; export default EditorDrawer;