import { Entity } from "../../interfaces/models/Entity";
declare function useFetchEntityByForeignId(): ({ foreignId, createIfNotFound, }: {
    foreignId: string;
    createIfNotFound?: boolean;
}) => Promise<Entity>;
export default useFetchEntityByForeignId;
