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