import React from 'react'; interface Props { /** text to display in the button */ children: React.ReactChild; } declare const Container: ({ children }: Props) => JSX.Element; export default Container;