import { type IBackend, type IBackendContext } from './interfaces'; /** * Backend factory. Defaults to the 'ent' provider; explicit config.provider * takes precedence over BACKEND_PROVIDER. Unknown providers fall back to Ent * for backwards compatibility. */ export declare function getBackend(config?: IBackendContext): IBackend; export default getBackend;