export interface Item {
id: number;
uid: string;
fileName: string;
extension: string;
name: string;
url: string;
altTitle: string | undefined;
isStockPhoto: boolean;
}
export type OnInsertFiles = (els: Item[]) => void;
export type OnInsertFile = (el: Item) => void;