import { LinkedInBaseAction } from '../linkedin-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to schedule a post on LinkedIn
 * Note: LinkedIn API v2 does not have native scheduling support.
 * This action stores the post data for later publishing via a separate scheduler service.
 */
export declare class LinkedInSchedulePostAction extends LinkedInBaseAction {
    /**
     * Schedule a post for future publishing on LinkedIn
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Define the parameters this action expects
     */
    get Params(): ActionParam[];
    /**
     * Get action description
     */
    get Description(): string;
}
//# sourceMappingURL=schedule-post.action.d.ts.map