/** * 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 { PropsWithChildren } from 'react'; import { AnimatedScrollViewProps } from 'react-native-reanimated'; type UseLogicParam = PropsWithChildren<{ stickyFooter?: boolean; } & Pick>; export declare const useLogic: ({ children, stickyFooter, ...props }: UseLogicParam) => { paddingRight: number; title: string | number | import("react").ReactElement> | Iterable; body: string | number | import("react").ReactElement> | Iterable; renderFooter: () => import("react/jsx-runtime").JSX.Element; onLayout: (e: any) => void; onContentSizeChange: (w: any, h: any) => void; footer: string | number | import("react").ReactElement> | Iterable; showFooter: boolean; }; export {}; //# sourceMappingURL=useLogic.d.ts.map