import { INodeExecutionData, INodeType, INodeTypeDescription, IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-workflow';
export declare class GoogleSearchConsole implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getVerifiedSites(this: ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
                description: string;
            }[] | {
                name: string;
                value: string;
            }[]>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
