import Typesense from 'typesense';
interface TypesenseConfig {
    typesenseHost: string;
    typesensePort: string;
    typesenseProtocol: string;
    typesenseApiKey: string;
}
export declare function getTypesenseClient(config: TypesenseConfig): Typesense.Client;
export {};
