import { SugGetOptions } from './SUGGET'; export { IS_READ_ONLY } from './SUGGET'; export declare function transformArguments(key: string, prefix: string, options?: SugGetOptions): Array; export interface SuggestionWithPayload { suggestion: string; payload: string | null; } export declare function transformReply(rawReply: Array | null): Array | null;