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