UNPKG

@brizy/media-gallery

Version:
9 lines (8 loc) 295 B
import { PropsWithChildren, ReactElement } from "react"; interface Props { isSelected: boolean; isBulkSelected: boolean; onSelectItem: VoidFunction; } export declare const CheckBox: ({ isSelected, isBulkSelected, onSelectItem }: PropsWithChildren<Props>) => ReactElement; export {};