export declare type ParsedStyle = {
    bold?: boolean;
    textColor?: string;
    bgColor?: string;
    hexColor?: string;
    hexBgColor?: string;
    italic?: boolean;
    underline?: boolean;
    strikethrough?: boolean;
    monospace?: boolean;
    text: string;
    start: number;
    end: number;
};
declare function prepare(text: string): ParsedStyle[];
export default prepare;
