import type { PropsWithChildren } from 'react'; export interface LoadResultProps { /** @deprecated - use error prop */ apiError?: Error; /** Defer error handling to the children and load them */ error?: boolean; notFound: boolean; searchResult: T | undefined; } export declare function LoadResult(props: PropsWithChildren>): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=LoadResult.d.ts.map