import * as React from 'react' import { SemanticShorthandItem } from '../../generic' import { StrictButtonProps } from '../../elements/Button' import { LabelProps } from '../../elements/Label' import { StrictFormFieldProps } from './FormField' export interface FormButtonProps extends StrictFormButtonProps { [key: string]: any } export interface StrictFormButtonProps extends Omit, Omit { /** An element type to render as (string or function). */ as?: any /** A FormField control prop. */ control?: any /** Shorthand for a Label. */ label?: SemanticShorthandItem } declare const FormButton: React.FC export default FormButton