import { ViewStyle } from 'react-native'; import { StyleProp } from 'react-native'; type RootStyle = { root: StyleProp; button: StyleProp; }; type RippleStyle = { ripple: StyleProp; }; export declare const containerStyle: RootStyle; export declare const rippleStyle: ({ x, y, radius, color: backgroundColor, }: { x: number; y: number; radius: number; color?: string; }) => RippleStyle; export {};