import { ViewStyle } from 'react-native'; export * from './RnFadeWrapperViewNativeComponent'; export declare enum FadeWrapperOrientation { HORIZONTAL = "horizontal", VERTICAL = "vertical" } export type TFadeSizes = { top?: number; right?: number; bottom?: number; left?: number; }; interface IProps { color?: string; orientation?: 'horizontal' | 'vertical'; size?: number; sizes?: TFadeSizes; children: React.ReactNode; inward?: boolean; style?: ViewStyle; } export declare const FadeWrapper: React.FC>; //# sourceMappingURL=index.d.ts.map