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