import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; type Props = { icon?: any; onPress: () => void; top?: number; left?: number; right?: number; bottom?: number; backgroundColor?: string; style?: StyleProp; iconSource?: string; }; declare const FAB: (props: Props) => React.JSX.Element; export default FAB; //# sourceMappingURL=FAB.d.ts.map