import React from 'react';
export interface ScrollableLineProperties {
    text: string;
    style?: React.CSSProperties;
    className?: string;
}
/**
 * Renders a horizontal scrollable line of text
 * based on the width of the container.
 *
 * @param properties
 */
declare const ScrollableLine: React.FC<ScrollableLineProperties>;
export default ScrollableLine;
