export declare const rtlTextContainer: {
    getAttributes: ({ condition, forElements }: {
        condition?: boolean;
        forElements: any[];
    }) => {
        dir: string;
    } | {
        dir?: undefined;
    };
    createFor: ({ element, condition }: {
        element: any;
        condition?: boolean;
    }) => any;
};
