import React from 'react'; import { PressableProps } from 'react-native'; export declare type FormSubmitProps = React.PropsWithChildren<{ accessibilityLabel: string; accessibilityHint?: string; busy: boolean; style?: PressableProps['style']; testID?: string; }>; export declare const FormSubmit: (props: FormSubmitProps) => JSX.Element;