import { Editor } from "slate";
import { TypeOptions } from "../options";
export default function createStyle(opts: TypeOptions): {
    getData: (_editor: Editor, el: HTMLElement) => {
        data?: undefined;
    } | {
        data: {
            [x: string]: string;
        };
    };
};
//# sourceMappingURL=index.d.ts.map