import { UserPropsContextInterface } from '../../types';

declare function UserPropsProvider({ userPropsValue, children }: {
    userPropsValue: UserPropsContextInterface;
    children: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;
declare function useUserProps(): UserPropsContextInterface;
export { UserPropsProvider, useUserProps };
