import { type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow';
import { getPassportOptions, getPassportReportTypeOptions } from './features/passport/passport.method';
export declare class CisAssessment implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getPassportOptions: typeof getPassportOptions;
            getPassportReportTypeOptions: typeof getPassportReportTypeOptions;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
