/// interface Props { titles: Array; subtitle: string; } declare function BathHeader(props: Props): JSX.Element; declare namespace BathHeader { var defaultProps: { titles: never[]; subtitle: string; }; } export default BathHeader;