import { PageProps } from './types'; type PagerItemComponentProps = PageProps & { renderItem: (props: any) => React.ReactElement; }; /** Memoized only on `renderItem` and `item` — positional props (`isFirst`, `isLast`, etc.) are intentionally excluded so that changing the active page doesn't re-render every item in the carousel. */ export declare const PagerItem: import("react").NamedExoticComponent; export {}; //# sourceMappingURL=PagerItem.d.ts.map