export interface Command { (...any: any[]): any; name: string; } export interface ClientConfig { commands?: Command[]; } export declare const reflowClient: (clientConfig: ClientConfig) => (client: any) => any;