import React from 'react'; type Border = 'top' | 'right' | 'bottom' | 'left'; export interface ToolbarProps { border?: Border[]; } declare const Toolbar: React.FC; export { Toolbar };