import React from 'react'; export interface ToggleListConfig { updateState?: (value: string | number) => void; disabledAll: boolean; value?: string | number; } export declare const ToggleListContext: React.Context; export declare const useToggleListContext: () => ToggleListConfig;