import React from 'react'; import type { UseIndexProps } from '../lib/useIndex'; export type IndexProps = UseIndexProps & { children?: React.ReactNode; }; export declare function Index({ children, ...props }: IndexProps): JSX.Element | null;