import type { FC } from 'react'; export interface StrikethroughToolbarButtonProps { disabled: boolean; variant: 'button' | 'menu'; } declare const StrikethroughToolbarButton: FC; export default StrikethroughToolbarButton;