export declare const QueryParser: { readonly dismax: "dismax"; readonly lucene: "lucene"; readonly simple: "simple"; readonly structured: "structured"; }; export type QueryParser = (typeof QueryParser)[keyof typeof QueryParser]; export declare const ContentType: { readonly application_json: "application/json"; readonly application_xml: "application/xml"; }; export type ContentType = (typeof ContentType)[keyof typeof ContentType];