import React from 'react'; import { CONTAINER_LABELS, ITEM_LABELS } from '../constants'; interface Props { header: React.ReactNode; className?: string; expanded?: boolean; label?: CONTAINER_LABELS | ITEM_LABELS | ''; itemName?: string; toggleInState?: boolean; } export declare const Toggle: React.FunctionComponent; export {};