import React from 'react'; import type { ViewStyle } from 'react-native'; interface ListProps { style?: ViewStyle; children?: React.ReactNode; testID?: string; } /** * List container. Iteration/repeat is handled by the engine layer — * this component just provides the layout wrapper with list role. */ export declare function List({ style, children, testID }: ListProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=list.d.ts.map