/** * 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 { AnimatedProps } from 'react-native-reanimated'; import { View, ViewProps } from 'react-native'; import { ReactNode, RefAttributes } from 'react'; import { CrossedMethods } from '@crossed/styled'; export type FloatingContentProps = Omit>, 'children' | 'style'> & { /** * Crossed style */ style?: CrossedMethods; /** * Animated view style */ animatedStyle?: AnimatedProps['style']; children?: ReactNode; }; export declare const FloatingContent: import("react").NamedExoticComponent>, "children" | "style"> & { /** * Crossed style */ style?: CrossedMethods; /** * Animated view style */ animatedStyle?: AnimatedProps["style"]; children?: ReactNode; } & RefAttributes>; //# sourceMappingURL=Content.d.ts.map