import { ChildError } from "./";
export default class GrandChildError extends ChildError {
    functionA(): void;
    functionB(): void;
    readonly propertyA: string;
    readonly propertyB: string;
    fieldA: string;
    fieldB: string;
}
