import OnesyStyle from './OnesyStyle';
export interface IRtl {
value?: any;
arguments?: any;
}
declare function rtl(onesyStyle: OnesyStyle): {
methods: {
method: (value_: {
value: string;
property: string;
}) => IRtl;
};
remove: () => void;
};
export default rtl;