import * as React from 'react';
export interface CodeErrorsContext {
  errors?: Error[];
}
export declare const CodeErrorsContext: React.Context<CodeErrorsContext | undefined>;
export declare function useErrorsContext(): CodeErrorsContext | undefined;