import React from 'react'; import { StyleProp, TextStyle, ViewStyle } from 'react-native'; interface Props { accessibilityLabel?: string; color?: 'primary' | 'secondary'; disabled?: boolean; icon?: React.ComponentType<{ style?: StyleProp; }>; iconOnly?: boolean; onPress?: (event: MouseEvent) => void; style?: StyleProp; testID?: string; title: string; type?: 'text' | 'raised' | 'unelevated' | 'outlined' | 'shape' | 'shapeRaised'; } declare const Button: (props: Props) => React.ReactElement React.ReactElement React.Component)>) | (new (props: any) => React.Component)>; export default Button; //# sourceMappingURL=Button.d.ts.map