import { Config as DatatablesConfig } from './types/index.js';
export default class Config {
    protected config: DatatablesConfig;
    constructor(config: DatatablesConfig);
    isWildcard(): boolean;
    isSmartSearch(): boolean;
    isCaseInsensitive(): boolean;
    isDebugging(): boolean;
    get(key: string, defaultValue?: any): any;
    set(key: string, value?: any): void;
    isMultiTerm(): boolean;
    isStartsWithSearch(): boolean;
    jsonHeaders(): Record<string, any>;
}
