import * as React from 'react'; import { TextStyle, ViewStyle } from 'react-native'; import { IMDOptionSet, IMDOptionValue } from '../types'; export interface IMDCheckListProps { styles?: IMDCheckListStyle; options?: IMDOptionSet[]; defaultValues?: IMDOptionValue[]; alignCenter?: boolean; onChange?: (values?: IMDOptionValue[]) => void; } export interface IMDCheckListState { values: IMDOptionValue[]; } export interface IMDCheckListStyle { wrapper?: ViewStyle; icon?: TextStyle; } export declare const MDCheckListStyles: IMDCheckListStyle; export default class MDCheckList extends React.Component { static defaultProps: { styles: IMDCheckListStyle; options: never[]; }; constructor(props: IMDCheckListProps); render(): JSX.Element | null; private renderCellItems; private setValues; private onItemPressed; }