import React from 'react';
export type ToolbarContextState = {
    setShowError?: (showError: boolean) => void;
};
declare const ToolbarContext: React.Context<ToolbarContextState>;
export default ToolbarContext;
