import { FunctionComponent, SyntheticEvent } from 'react'; export interface SubmitProps { valid: boolean; onSubmit: (e: SyntheticEvent) => void; } /** * The submit button. */ declare const Submit: FunctionComponent; export default Submit;