import React from "react"; interface Props { children: Array; } declare const Examples: ({ children }: Props) => JSX.Element; export default Examples;