import React from 'react'; import { Path } from '@sanity/types'; declare type Props = { path: any | null; onFocus: () => {}; onBlur: () => {}; children: (arg: any) => any; }; declare type State = { focusPath: Array; }; export default class SimpleFocusManager extends React.Component { state: { focusPath: any[]; }; handleFocus: (path: Path) => void; handleBlur: () => void; render(): any; } export {}; //# sourceMappingURL=SimpleFocusManager.d.ts.map