import { FunctionComponent } from 'react';
import { GenericListSettings } from './GenericListSettings';
export declare const useGenericListSettings: () => GenericListSettings;
/** Wrap this around your application to be able to configure and use generic lists.
 * Also includes GenericListCacheProvider, so no need to wrap that around your application. */
export declare const GenericListSettingsProvider: FunctionComponent<{
    children?: React.ReactNode;
}>;
