import * as React from 'react'; declare type ContextProps = { onRawChange?: (checked?: boolean, label?: string) => void; checked?: boolean | ((value: any) => boolean); options?: string[]; min?: number; max?: number; }; export declare const Provider: React.ComponentType>; export declare const Consumer: React.ComponentType>; export declare const createConsumer: (Component: any) => (props: any) => JSX.Element; export {};