/** * Parse an input to a list of slugs. * * If the input has newlines, we split by newlines. Otherwise, if commas * exist, we split by commas. Otherwise, we split by spaces. */ export declare function parse(words: string | readonly string[]): string[]; //# sourceMappingURL=parse.d.ts.map