import { FC, ReactNode } from 'react';
import Policy from '@pansy/policy';
import { Authority } from './check-authority';
export interface AuthorizedProps {
    authority?: Authority;
    noMatch?: ReactNode;
    policy?: Policy;
}
declare const Authorized: FC<AuthorizedProps>;
export default Authorized;
