import { default as React } from 'react'; import { PosterOption } from './types'; import { Translations } from '../CoverImagePanel/translations/consts'; type PosterGridProps = { posterOptions: Array; onImageClick: (index: number) => void; onUpdateImage: (index: number) => void; onRemoveImage: () => void; translations: Translations; }; export declare const PosterGrid: React.FC; export {};