import React from 'react'; import type { ScrollViewProps } from 'react-native'; import type { ActionGroupProps } from '../FAB/ActionGroup'; import type { FABProps } from '../FAB/FAB'; export interface ScrollViewWithFABProps extends ScrollViewProps { /** * FAB or FAB.ActionGroup props props. */ fabProps: FABProps | ActionGroupProps; } declare const ScrollViewWithFAB: ({ fabProps, ...props }: ScrollViewWithFABProps) => React.JSX.Element; export default ScrollViewWithFAB;