/// export interface Props { name: string; } declare const Greeting: ({ name }: Props) => JSX.Element; export default Greeting;