export interface RefMapType {
    [key: string]: RefMetadataType;
}
export interface RefMetadataType {
    count: number;
    deps: {
        type: string;
        prop: string | Symbol;
    }[];
}
export declare function getRefMap(clsType: any, initMaps?: {}): RefMapType;
