export declare type typeGrantEvent = 'SELECT' | 'INSERT' | 'UPDATE' | 'DELETE' | 'TRUNCATE' | 'REFERENCES' | 'TRIGGER' | 'ALL PRIVILEGES';
export interface IGrant {
    ruoli: string[];
    tabellaDestinazione?: string;
    colonneRiferimento?: string[];
    events: typeGrantEvent[];
}
