@brizy/media-gallery
Version:
19 lines (18 loc) • 512 B
TypeScript
import { ReactElement } from "react";
interface FileSource {
author: string;
authorUrl: string;
provider: string;
termsUrl: string;
}
export interface Props {
fileName: string;
altTitle: string | undefined;
dimensions: string | undefined;
url: string;
fileType: string;
fileSource: FileSource;
onCopy: (el: HTMLElement) => void;
}
export declare const Content: ({ fileName, altTitle, dimensions, url, fileType, fileSource, onCopy }: Props) => ReactElement;
export {};