UNPKG

763 BTypeScriptView Raw
1import * as React from 'react';
2import { ActionSheetOptions } from '../types';
3declare type Props = ActionSheetOptions & {
4 tintIcons: boolean | null;
5 onSelect: (i: number) => boolean;
6 startIndex: number;
7 length: number;
8};
9export default class ActionGroup extends React.Component<Props> {
10 static defaultProps: {
11 title: null;
12 message: null;
13 showSeparators: boolean;
14 tintIcons: boolean;
15 textStyle: {};
16 };
17 render(): JSX.Element;
18 _renderRowSeparator: (key: React.ReactText) => JSX.Element;
19 _renderTitleContent: () => JSX.Element | null;
20 _renderIconElement: (iconSource: React.ReactNode, color: string) => JSX.Element | null;
21 _renderOptionViews: () => React.ReactNode[];
22}
23export {};