export declare class CockatooOptions {
    caseSensitive: boolean;
    accentSensitive: boolean;
    threshold: number;
    tokenize: boolean;
    tokenThreshold: number;
    sorted: boolean;
    exhaustive: boolean;
    keys: string[];
    constructor(obj: {
        caseSensitive?: boolean;
        accentSensitive?: boolean;
        threshold?: number;
        tokenize?: boolean;
        tokenThreshold?: number;
        sorted?: boolean;
        exhaustive?: boolean;
        keys?: string[];
    });
}
