import React from 'react'; export interface ToolbarContextTypes { fontSize: string; onChange: (value?: string, callback?: () => void) => void; } declare const ToolbarContext: React.Context; export { ToolbarContext };