mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
8 lines
288 B
TypeScript
8 lines
288 B
TypeScript
import React from 'react';
|
|
import type { InternalDocSearchHit, StoredDocSearchHit } from './types';
|
|
interface HitProps {
|
|
hit: InternalDocSearchHit | StoredDocSearchHit;
|
|
children: React.ReactNode;
|
|
}
|
|
export declare function Hit({ hit, children }: HitProps): JSX.Element;
|
|
export {};
|