import type { Expectation } from '../expectation/expectation';
import type { Property } from '../proxy';
export declare class UnexpectedAccess extends Error {
    constructor(property: Property, expectations: Expectation[]);
}
