import { TUnityType } from "../typings/unity.js";
export interface IUsage {
    type: TUnityType | 'Image' | 'RawImage' | 'Toggle' | 'UGUIAltas';
    path: string;
    image: string;
}
export declare class PrefabSearcher {
    private UGUIAltasGUID;
    findImageUsages(prefabFile: string, guids: string[]): Promise<IUsage[]>;
    private findImageUsageInternal;
    findScriptUsages(prefabFile: string, guids: string[]): Promise<IUsage[]>;
    private findScriptUsageInternal;
}
