interface Test { name: string; depth: number; status?: 'idle' | 'pass' | 'fail' | 'skip' | 'running'; logs?: string[]; id: string; parent?: string; type: 'test' | 'suite'; only?: boolean; skip?: boolean; } interface TestListItemProps { node: Test; depth: number; id: string; runTest: (i: string) => void; } export declare const TestListItem: ({ node, depth, id, runTest }: TestListItemProps) => import("react").JSX.Element; export {};