// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IProps { open: boolean; close: () => void; onSelect: (image: string, lastModified?: string) => void; highlightColor: string; environment: "Development" | "Test" | "Production"; tenant: string; token: string; isMobile: boolean; style?: React.CSSProperties; mobileImagesPerRow?: number; } export interface IState { searchQuery: string; images: any[]; totalCount: number; loading: boolean; } export class StockPhotos extends React.Component { constructor(props: IProps); componentDidMount(): void; componentWillReceiveProps(props: IProps): void; render(): JSX.Element; }