import * as React from 'react'; export interface Props { /** Label of the button */ children: string; /** Class of the button */ className: string; } /** Button */ declare const Button: React.FC; export { Button };