react-admin-component
Version:
react library
7 lines (6 loc) • 419 B
TypeScript
import React from 'react';
declare type AuthPoolProps = {
checkPermit: (permits: any) => React.ReactElement | null;
};
declare const AuthPool: (props: AuthPoolProps) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)> | null;
export default AuthPool;