/** * Capitalise a given string */ declare const capitalize: (str: string) => string; export default capitalize;