import { MediaType } from "../../shared/graphql/graphql"; type MediaProps = { title?: string; types?: MediaType[]; limit?: number; isFilterByTypes?: boolean; okButtonLoading?: boolean; onClose?: () => void; onOk?: (medias: string[]) => void; }; declare const Media: ({ title, types, isFilterByTypes, limit, okButtonLoading, onClose, onOk, }: MediaProps) => import("react/jsx-runtime").JSX.Element; export default Media;