/** Append a suggestion; no-op when already present. Returns a new array. */ export declare function addSuggestion(suggestions: string[], s: string): string[]; /** Remove a suggestion by value. */ export declare function removeSuggestion(suggestions: string[], s: string): string[];