interface ISaaSOperation {
    name: string;
    isNonSource: boolean;
    type?: string;
    isPlural?: boolean;
    sensitiveProperty?: string[];
    subTaskGroup?: string;
    realOperation?: string;
}
export declare class SaaSOperations {
    nonSourceOperations: string[];
    nonSourceOperationsPlural: string[];
    sensitiveDataOperations: string[];
    names: string[];
    allOperations: ISaaSOperation[];
    opTypes: {
        [key: string]: string;
    };
    constructor();
    filter(name: string): ISaaSOperation;
}
export {};
