9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
import React from 'react';
|
|
declare type Props = {
|
|
children: React.ReactNode;
|
|
};
|
|
export default function tunnel(): {
|
|
In: ({ children }: Props) => null;
|
|
Out: () => JSX.Element;
|
|
};
|
|
export {};
|