/// import { ViewProps } from "react-native"; import { BaseAnimationBuilder, EntryExitAnimationFunction } from "react-native-reanimated"; type EntryOrExitLayoutType = BaseAnimationBuilder | typeof BaseAnimationBuilder | EntryExitAnimationFunction; interface ZSViewProps extends ViewProps { animation: EntryOrExitLayoutType; } declare const ZSView: ({ animation, ...props }: ZSViewProps) => import("react").JSX.Element; export default ZSView; //# sourceMappingURL=index.d.ts.map