export interface Mock {
    identifier: string;
    path: string;
    type: "namespace" | "name" | "default";
}
export declare function getMocks(code: string, type: "flow" | "typescript", alwaysMock?: string[]): Mock[];
