///
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
theme?: string | undefined;
width?: string | undefined;
height?: string | undefined;
visible?: boolean | undefined;
editor: AceAjax.Editor;
};
events: {
[evt: string]: CustomEvent;
};
slots: {};
};
export type AceStatusbarProps = typeof __propDef.props;
export type AceStatusbarEvents = typeof __propDef.events;
export type AceStatusbarSlots = typeof __propDef.slots;
export default class AceStatusbar extends SvelteComponentTyped {
}
export {};