import { FC } from 'react'; import './style.less'; export interface Permission { name: string; extendValue: string; } export interface IPermissionProps { loading?: boolean; users?: any[]; permissions?: Permission[]; children: any; } export declare const Provider: FC;