import React from 'react'; import { GestureResponderEvent } from 'react-native'; import { CommonProps } from '../../props/common/types'; import { IconProps } from '../Icon/Icon'; export type FieldButtonProps = CommonProps & { icon: IconProps['name']; accessibilityLabel: string; onPress?: (event: GestureResponderEvent) => void; }; export declare const FieldButton: ({ icon, accessibilityLabel, onPress, testID }: FieldButtonProps) => React.JSX.Element; //# sourceMappingURL=FieldButton.d.ts.map