@react-form-fields/native-base
Version:
Native Base Form Fields
10 lines (9 loc) • 316 B
TypeScript
import * as React from 'react';
import { IModalProps } from './Modal';
export interface IListProps extends IModalProps {
internalValue: Set<any>;
setInternalValue: Function;
renderOptions: boolean;
}
declare const List: React.MemoExoticComponent<(props: IListProps) => JSX.Element>;
export default List;