import type { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
 * SmartSuite Org Management → Get Current User
 */
export declare const description: readonly [{
    readonly displayName: "Operation";
    readonly name: "operation";
    readonly type: "hidden";
    readonly default: "getCurrentUser";
    readonly displayOptions: {
        readonly show: {
            readonly resource: readonly ["orgManagement"];
            readonly operation: readonly ["getCurrentUser"];
        };
    };
    readonly description: "Retrieve details of the current authenticated user";
}];
export declare function execute(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
