///
import { Dictionary } from '../../base';
import { ReactAddon, ReactControl } from '../../react/base';
export declare const ArrowType: {
horizontal: string;
up: string;
down: string;
empty: string;
};
export declare const ItemAlignType: {
top: string;
middle: string;
bottom: string;
};
export declare const PlatformType: {
android: string;
ios: string;
};
export declare class MobileListItem extends ReactAddon {
arrow?: keyof typeof ArrowType;
thumb?: string;
align?: keyof typeof ItemAlignType;
multipleLine?: boolean;
wrap?: boolean;
platform?: keyof typeof PlatformType;
link?: string;
contentControl?: ReactControl;
onClick?: () => void;
onRender?: (() => JSX.Element) | undefined;
}
export declare const MobileListItemControl: any;
export declare class MobileList extends ReactAddon {
repeatByValue?: boolean;
childItems?: Dictionary>;
headerControl?: ReactControl;
footerControl?: ReactControl;
onRender?: (() => JSX.Element) | undefined;
}
export declare const MobileListControl: any;