import React, { FC, MouseEvent, ReactNode } from 'react'; export interface IFormikUiSubmitBtnProps { /** Adds a custom class to the SubmitBtn */ className?: string; /** Disables the SubmitBtn */ disabled?: boolean; /** sets the children for the button */ children?: ReactNode; /** sets alternativley to children the text shown on the button */ text?: string | number | ReactNode; /** Button Click handler */ onClick?: (event: MouseEvent) => void; } export declare const SubmitBtn: FC; declare const _default: React.NamedExoticComponent; export default _default;