import type { PropsWithChildren } from 'react'; import React from 'react'; /** Props for {@link LoadResult}. */ 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; } /** Renders loading, not-found, or children based on search result state. */ export declare function LoadResult(props: PropsWithChildren>): React.JSX.Element; //# sourceMappingURL=LoadResult.d.ts.map