import { IRole, ITenant, IRolePermission } from '@metad/contracts'; import { Connection } from 'typeorm'; export declare const createRolePermissions: (connection: Connection, roles: IRole[], tenants: ITenant[], isDemo: boolean) => Promise; export declare const cleanUpRolePermissions: (connection: Connection, roles: IRole[], tenants: ITenant[], isDemo: boolean) => Promise;