/// interface Props { title: string; theme?: string; } declare const UnderlineButton: ({ title, theme }: Props) => JSX.Element; export default UnderlineButton;