import React from 'react';
import type { SearchOptions } from './types/index.js';
interface Props {
    query: string;
    options: SearchOptions;
}
export default function App({ query, options }: Props): React.JSX.Element;
export {};
