export default FormatTextButton; type FormatTextButton = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; declare const FormatTextButton: import("svelte").Component<{ /** * Button type. */ type: TextEditorFormatType; } & Record, {}, "">; type Props = { /** * Button type. */ type: TextEditorFormatType; }; import type { TextEditorFormatType } from '../../../typedefs';