import type { ReactElement } from 'react'; import React from 'react'; import type { BaseProps } from '@toptal/picasso-shared'; declare type Props = BaseProps & { active?: boolean; disabled?: boolean; icon: ReactElement; onClick?: (e: React.MouseEvent) => void; id?: string; }; declare const RichTextEditorButton: { ({ active, disabled, onClick, className, ...rest }: Props): JSX.Element; displayName: string; }; export default RichTextEditorButton; //# sourceMappingURL=RichTextEditorButton.d.ts.map