import * as React from 'react'; interface CustomProps { id?: string; className?: string; theme?: string; width?: string; height?: string; disabled?: boolean; } declare type Props = React.HTMLAttributes & CustomProps; declare const Button: React.FC; export { Button };