mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-12 20:04:57 +02:00
9 lines
288 B
TypeScript
9 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 {};
|