/**
 * Capitalizes the first letter of each sentence in a given string.
 * Sentences are determined by punctuation marks such as '.', '!', '?', and '…' followed by whitespace.
 *
 * @param sentence - The string to be capitalized.
 * @returns The capitalized string.
 */
export declare function capitalize(sentence: string): string;
