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