import * as React from 'react';
export interface ImageRollProps {
onCancel: () => void;
onSelected: (imgObj: {}) => void;
}
export default class ImageRoll extends React.Component<ImageRollProps, any> {
onSelected: (images: any) => void;
render(): JSX.Element;
}