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