import { Struct } from './Struct';
import { Id } from '../types/Id';
import { Json } from '../types/Json';
export declare abstract class Child extends Struct {
    readonly id: Id;
    protected merge(a: unknown): Json;
}
