import type { GestureResponderEvent, ImageSourcePropType } from 'react-native'; interface Props { label: string; onPress: (event: GestureResponderEvent) => void; children?: JSX.Element; renderItem?: JSX.Element; image?: ImageSourcePropType; typeBalance?: boolean; } /** * @label Button title * @onPress Called when the touch is released, but not if cancelled * @image Receives an image source to display instead of the label * @renderItem Receives a JSX element to render into the body of button * @children Receives a JSX element to render into the bottom of button **/ export declare const Select: ({ label, onPress, children, renderItem, image, typeBalance, }: Props) => JSX.Element; export {};