import React from "react"; import { type ScrollShadowProps } from "heroui-native"; export interface NScrollShadowProps extends Omit { /** A single scrollable child — a `ScrollView`, `FlatList` or similar. */ children: React.ReactElement; /** * The gradient component the shadows are drawn with, e.g. `LinearGradient` * from `expo-linear-gradient`. Required: HeroUI Native draws nothing without * it, and the library does not depend on a gradient package itself so the app * can pick its own. */ LinearGradientComponent: ScrollShadowProps["LinearGradientComponent"]; } export declare const NScrollShadow: React.NamedExoticComponent; //# sourceMappingURL=NScrollShadow.d.ts.map