/**
 * A higher-order function that create an incredibly basic ltr -> rtl style converter for CSS objects.
 *
 * @param {React.CSSProperties} ltrStyles   Ltr styles. Converts and renders from ltr -> rtl styles, if applicable.
 * @param {React.CSSProperties} [rtlStyles] Rtl styles. Renders if provided.
 *
 * @return {() => import('@emotion/react').SerializedStyles} A function to output CSS styles for Emotion's renderer
 */
export function rtl(ltrStyles?: React.CSSProperties, rtlStyles?: React.CSSProperties): () => import("@emotion/react").SerializedStyles;
export namespace rtl {
    /**
     * Call this in the `useMemo` dependency array to ensure that subsequent renders will
     * cause rtl styles to update based on the `isRTL` return value even if all other dependencies
     * remain the same.
     *
     * @example
     * const styles = useMemo( () => {
     *   return css`
     *     ${ rtl( { marginRight: '10px' } ) }
     *   `;
     * }, [ rtl.watch() ] );
     */
    function watch(): boolean;
}
export function convertLTRToRTL(ltrStyles?: React.CSSProperties): React.CSSProperties;
//# sourceMappingURL=rtl.d.ts.map