interface IProfile { name: string; roles: string[]; } export declare const useProfile: () => IProfile; export {};