import type { ContextState } from '../../DataContext';
export type UseHandleStatusProps = {
    outerContext: ContextState;
    preventUncommittedChanges: boolean;
    error: Error;
    name?: string;
};
export default function useHandleStatus({ outerContext, preventUncommittedChanges, error, name, }: UseHandleStatusProps): {
    hasContentChanged: boolean;
    showStatus: any;
};
