UNPKG

react-native-ios-list

Version:
11 lines (10 loc) 401 B
import React, { ReactElement } from 'react'; import { ListProps } from '../List'; declare type ListStyleProviderProps = { dividerColor: string; sideBar: boolean; children: ReactElement<ListProps>; }; export declare const ListStyleContext: React.Context<any>; export declare const ListStyleProvider: ({ children, dividerColor, sideBar, }: ListStyleProviderProps) => JSX.Element; export {};