export default CodeEditorToolbar; type CodeEditorToolbar = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; declare const CodeEditorToolbar: import("svelte").Component<{ /** * Whether to hide the widget. */ hidden?: boolean | undefined; /** * Whether to disable the widget. An alias of the `aria-disabled` * attribute. */ disabled?: boolean | undefined; /** * Whether to make the widget read-only. An alias of the * `aria-readonly` attribute. */ readonly?: boolean | undefined; } & Record, {}, "">; type Props = { /** * Whether to hide the widget. */ hidden?: boolean | undefined; /** * Whether to disable the widget. An alias of the `aria-disabled` * attribute. */ disabled?: boolean | undefined; /** * Whether to make the widget read-only. An alias of the * `aria-readonly` attribute. */ readonly?: boolean | undefined; };