import { Record } from "immutable"; export interface TypeOptions { tabable: string[]; indentable: string[]; maxIndentation: number; dataField: string; withHandlers: boolean; label: string; } declare const Options_base: Record.Class; declare class Options extends Options_base { tabable: string[]; indentable: string[]; maxIndentation: number; dataField: string; withHandlers: boolean; label: string; } export default Options; //# sourceMappingURL=index.d.ts.map