import type { FC } from 'react'; import type { Features } from './Toolbar.types'; export interface ToolbarProps { features: Features[]; sticky?: boolean; setFocusableBtn: (el: HTMLElement) => void; } declare const Toolbar: FC; export default Toolbar; //# sourceMappingURL=Toolbar.d.ts.map