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