declare const configSchema: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
    search: {
        type: string;
        defaultValue: string;
        description: string;
    };
    sequenceAdapter: {
        type: string;
        defaultValue: null;
    };
    searchForward: {
        type: string;
        defaultValue: boolean;
    };
    searchReverse: {
        type: string;
        defaultValue: boolean;
    };
    caseInsensitive: {
        type: string;
        defaultValue: boolean;
    };
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
export default configSchema;
