import type { FC } from 'react';
interface Props {
    applyData?: any;
    onOk?: () => void;
    onCancel?: () => void;
    type?: string;
}
declare const AssignPermission: FC<Props>;
export default AssignPermission;
