import { PropsWithChildren } from "react"; export declare type IEntityProviderProps = PropsWithChildren<{ defaultEntity?: TEntity; }>; export declare const EntityProvider: ({ defaultEntity, ...props }: PropsWithChildren>) => JSX.Element;