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<any>;
};
export default class SimpleFocusManager extends React.Component<Props, State> {
    state: {
        focusPath: any[];
    };
    handleFocus: (path: Path) => void;
    handleBlur: () => void;
    render(): any;
}
export {};
//# sourceMappingURL=SimpleFocusManager.d.ts.map