/// import PropTypes from 'prop-types'; import type { CluesData, Direction, EnhancedProps } from './types'; declare const directionCluesPropTypes: { /** direction of this list of clues ("across" or "down") */ direction: PropTypes.Validator; /** a label to use instead of the (English) default */ label: PropTypes.Requireable; /** If loading the clues automatically fails, provide them directly. */ clues: PropTypes.Validator; }; export type DirectionCluesProps = EnhancedProps; declare function DirectionClues({ direction, label, clues, }: DirectionCluesProps): JSX.Element; declare namespace DirectionClues { var propTypes: { /** direction of this list of clues ("across" or "down") */ direction: PropTypes.Validator; /** a label to use instead of the (English) default */ label: PropTypes.Requireable; /** If loading the clues automatically fails, provide them directly. */ clues: PropTypes.Validator; }; var defaultProps: { label: undefined; }; } export default DirectionClues;