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