///
export declare type CharProps = {
value: string;
opId: string;
deleted: boolean;
marks: ('italic' | 'bold')[];
};
export declare const Char: import("react").ForwardRefExoticComponent>;
export declare type MarkOpProps = {
action: string;
markType: string;
backgroundColor: string;
borderColor: string;
opId: string;
start: {
opId: string;
};
end: {
opId: string;
};
};
export declare const MarkOp: React.FC;
export declare type PeritextProps = {
chars: CharProps[];
markOps: MarkOpProps[];
};
export declare const Peritext: React.FC;
//# sourceMappingURL=peritext.d.ts.map