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 {};
