import { ReactNode } from 'react';

export interface PermissionProps {
	name?: string;
	children?: ReactNode | ReactNode[];
}
export declare const Permission: (props: PermissionProps) => import("react").JSX.Element | null;

export {};
