import * as React from 'react';
export interface PreferencesContext {
  prefix?: string;
}
export declare const PreferencesContext: React.Context<PreferencesContext | undefined>;
export declare function usePreferences(): PreferencesContext | undefined;