declare type Options = {
    /** The delimiter between words */
    delimiter?: string | RegExp;
};
/**
 * Split a string into an array of words
 *
 * @param input The string to split
 * @param __namedParameters see {@link Options}
 * @default delimiter whitespace
 * @returns array of words
 */
export declare function splitWords(input: string, { delimiter }?: Options): string[];
export default splitWords;
