import { INodeProperties } from 'n8n-workflow';
type ResourceName = 'stock' | 'mutualFund' | 'etf' | 'bond' | 'forex' | 'crypto' | 'index' | 'technical' | 'institutional' | 'economic' | 'enterprise' | 'alternative';
declare const operationProperties: INodeProperties[];
declare const fieldProperties: INodeProperties[];
export declare const resourceOptions: {
    free: {
        name: string;
        value: ResourceName;
    }[];
    premium: {
        name: string;
        value: ResourceName;
    }[];
};
export { operationProperties, fieldProperties };
