export interface IPart {
    equal(other: unknown): boolean;
}
export declare function isPart(o: unknown): o is IPart;
