/// <reference types="react" />
import PropTypes from 'prop-types';
import type { Direction, EnhancedProps } from './types';
declare const directionCluesPropTypes: {
    /** direction of this list of clues ("across" or "down") */
    direction: PropTypes.Validator<string>;
};
export declare type DirectionCluesProps = EnhancedProps<typeof directionCluesPropTypes, {
    direction: Direction;
}>;
declare function DirectionClues({ direction }: DirectionCluesProps): JSX.Element;
declare namespace DirectionClues {
    var propTypes: {
        /** direction of this list of clues ("across" or "down") */
        direction: PropTypes.Validator<string>;
    };
    var defaultProps: {};
}
export default DirectionClues;
