import React from 'react';
import { GenericComponentsType, IGenericComponentsProvider } from './genericComponents.type';
export declare const GenericComponentContext: React.Context<GenericComponentsType | null>;
export declare const GenericComponentsProvider: ({ children, value, }: React.PropsWithChildren<IGenericComponentsProvider>) => JSX.Element;
export declare const useGenericComponents: () => GenericComponentsType;
