@brizy/media-gallery
Version:
9 lines (8 loc) • 305 B
TypeScript
import { PropsWithChildren, ReactElement } from "react";
interface Props {
isSelected: boolean;
isBulkSelected: boolean;
onSelectItem: VoidFunction;
}
export declare const Wrapper: ({ isSelected, isBulkSelected, children, onSelectItem, }: PropsWithChildren<Props>) => ReactElement;
export {};