import React from 'react'; declare type Props = { id?: string; primary?: boolean; maxContent?: boolean; small?: boolean; light?: boolean; children: React.ReactNode; onClick?: (event: React.MouseEvent) => void; link?: string; labelFor?: string; disabled?: boolean; }; declare const Button: ({ id, primary, maxContent, small, light, children, onClick, link, labelFor, disabled, }: Props) => JSX.Element; export default Button;