import { UserType } from "../providers"; declare type UseUserOutput = { isJuridicalUser: boolean; changeUserType: (value: UserType) => void; }; /** * Hook return user type and callback for change that * Using in useUser context */ export declare const useUserType: () => UseUserOutput; export {};