import { ReactNode } from 'react'; interface Props { type: 'theme' | 'extension'; children?: ReactNode; } export default function Search({ type, children }: Props): import("react/jsx-runtime").JSX.Element; export {};