UNPKG

@brizy/media-gallery

Version:
13 lines (12 loc) 521 B
import { ReactElement } from "react"; import { FileTypes } from "~/pages/mediaLibrary/types/types"; interface Props { isAllSelected: boolean; isDisabledBulkSelected: boolean; selectValue: FileTypes; onSelectValue: (selectOption: FileTypes) => void; onBulkSelectClick: VoidFunction; onSelectAllClick: VoidFunction; } export declare const ContentHeader: ({ selectValue, isAllSelected, isDisabledBulkSelected, onSelectValue, onBulkSelectClick, onSelectAllClick, }: Props) => ReactElement; export {};