import { SqError } from './types';
/**
 * Exception thrown when use of a disabled feature is attempted
 */
export declare class FeatureDisabledError extends SqError {
    constructor(featureName: string);
}
