import * as React from 'react';
interface ExpandableList {
    heading: string;
    subheading: string;
    tags: React.ReactNode[];
    rows: string[];
}
declare type Props = {
    className?: string;
    mods?: string;
    list: ExpandableList[];
    label: string;
    activeRows: string[];
    headerStatus: object;
    setActiveRows: React.Dispatch<React.SetStateAction<{}>>;
    setHeaderStatus: React.Dispatch<React.SetStateAction<{}>>;
};
declare const ToggleCheckboxList: React.FunctionComponent<Props>;
export default ToggleCheckboxList;
