import { CSSProperties } from "react"; export declare type FuncStyle = { (index: number, length: number): CSSProperties; }; export declare type StaticStyle = { [x: string]: CSSProperties | FuncStyle; }; declare type ImageURISource = string; export declare type ImageSource = ImageURISource | undefined; export declare class Props { images: ImageSource[]; height: number; width: number; borderRadius: number; spacing: number; style?: CSSProperties; overlayStyle?: CSSProperties; textStyle?: CSSProperties; imageOnClick?: { (index: number, images: any[]): void; }; } export {};