import type React from 'react'; import type { ScrollView } from 'react-native'; interface SlotProps { children?: React.ReactNode; } export interface SubpageLayoutProps { children?: React.ReactNode; scrollRef?: React.RefObject; onScroll?: (event: any) => void; } export type { SlotProps };