/// 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; /** a label to use instead of the (English) default */ label: PropTypes.Requireable; }; export type DirectionCluesProps = EnhancedProps; declare function DirectionClues({ direction, label, }: 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; }; var defaultProps: { label: undefined; }; } export default DirectionClues;