export const MAX_CHARACTERS_FACEBOOK: 640;
export class MultichannelFacebook {
    convertText(props: any, originalText: any): {
        texts: any[];
        propsLastText: any;
        propsWithoutChildren: any;
    } | {
        propsLastText: any;
        texts?: undefined;
        propsWithoutChildren?: undefined;
    };
    splitText(originalText: any): any[];
    getNewProps(props: any, lastText: any): {
        propsLastText: any;
        propsWithoutChildren: any;
    };
}
