import type { INodeProperties } from "n8n-workflow";
export interface LateResourceConfig {
    name: string;
    value: string;
    description: string;
}
export interface LateOperationConfig {
    name: string;
    value: string;
    action: string;
    routing?: any;
}
export interface LateFieldConfig extends INodeProperties {
}
export interface LateResourceModule {
    operations: LateOperationConfig[];
    fields: LateFieldConfig[];
}
export type LateResource = "profiles" | "posts" | "media" | "accounts" | "connect" | "usage" | "facebook" | "linkedin" | "clone";
export declare const LATE_RESOURCES: LateResourceConfig[];
//# sourceMappingURL=types.d.ts.map