import React from 'react'; import { StyleProp, ViewStyle, View } from 'react-native'; type Props = React.ComponentPropsWithRef & { children?: React.ReactNode; style?: StyleProp; }; declare const SnackbarContent: ({ children, style, ...rest }: Props) => React.JSX.Element; export default SnackbarContent; //# sourceMappingURL=SnackbarContent.d.ts.map