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