1import { GestureResponderEvent, Insets, ViewStyle } from 'react-native';
2type Props = {
3    backgroundColor: {
4        default: string;
5        pressed: string;
6    };
7    children?: any;
8    hitSlop?: Insets;
9    onPress?: ((event: GestureResponderEvent) => void) | null;
10    style?: ViewStyle;
11};
12export declare function LogBoxButton(props: Props): JSX.Element;
13export {};
14//# sourceMappingURL=LogBoxButton.d.ts.map