/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import { LayoutProps } from './utils/Layout'; import { PropsWithChildren } from 'react'; import Animated, { AnimatedScrollViewProps } from 'react-native-reanimated'; type Base = { /** * Set to true for sticky header */ stickyHeader?: boolean; /** * Set to true for sticky footer */ stickyFooter?: boolean; }; export type ScrollViewProps = PropsWithChildren & Base & { containerProps?: Omit; }>; export declare const ScrollView: import("react").ForwardRefExoticComponent & Base & { containerProps?: Omit; } & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes> & { Title: { ({ children }: PropsWithChildren): import("react").ReactNode; displayName: string; }; Footer: { ({ children }: PropsWithChildren): import("react").ReactNode; displayName: string; }; Body: { ({ children }: PropsWithChildren): import("react").ReactNode; displayName: string; }; }; export {}; //# sourceMappingURL=ScrollView.d.ts.map