import React from "react";
import { TestableComponent } from "../interfaces";
export interface InlineTextProps extends React.HTMLAttributes<HTMLElement>, TestableComponent {
    /**
     * Additional CSS class name.
     */
    className?: string;
}
/**
 * Forces all children to be displayed as inline content.
 */
export declare const InlineText: ({ className, children, ...otherProps }: InlineTextProps) => React.JSX.Element;
export default InlineText;
