import React from 'react'; import { View, ViewStyle } from 'react-native'; import type { ListGroupProps, ListGroupItemProps } from './types'; export declare const ListGroup: import("../../core/factory").PlatformBlocksComponent<{ props: ListGroupProps; ref: View; }>; export declare const ListGroupItem: import("../../core/factory").PlatformBlocksComponent<{ props: ListGroupItemProps; ref: View; }>; export declare const ListGroupDivider: React.ForwardRefExoticComponent<{ inset?: boolean; style?: ViewStyle; } & React.RefAttributes>; export declare const ListGroupBody: React.FC<{ children: React.ReactNode; }>; export default ListGroup;