import { INodeType, INodeTypeDescription } from "n8n-workflow";
import { getDatasheets, getSpaces, getViews } from "./LoadOptions";
export declare class Apitable implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getSpaces: typeof getSpaces;
            getDatasheets: typeof getDatasheets;
            getViews: typeof getViews;
        };
    };
}
