export default OrgUnitSelectAll; declare class OrgUnitSelectAll extends React.Component { constructor(props: any, context: any); cacheByFilters: {}; addToSelection: typeof addToSelection; removeFromSelection: typeof removeFromSelection; handleSelectAll(): void; handleDeselectAll(): void; getRelativeLevelFilter(api: any, level: any, currentRoot: any): number | undefined; getOrgUnitsByFilters(): void; getDescendantOrgUnits(): any; selectedFiltersCount(): number; } declare namespace OrgUnitSelectAll { namespace propTypes { const selected: PropTypes.Validator; const onUpdateSelection: PropTypes.Validator<(...args: any[]) => any>; const currentRoot: PropTypes.Requireable; const selectedFilters: PropTypes.Requireable; orgUnitGroupId: PropTypes.Requireable; programId: PropTypes.Requireable; }>>; } namespace contextTypes { const api: PropTypes.Validator; } } import React from "react"; import { addToSelection } from "./common"; import { removeFromSelection } from "./common"; import PropTypes from "prop-types";