import { BufferBaseAction } from '../buffer-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to reorder posts in a Buffer profile's queue
 */
export declare class BufferReorderQueueAction extends BufferBaseAction {
    /**
     * Reorder posts in the queue
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Define the parameters this action expects
     */
    get Params(): ActionParam[];
    /**
     * Metadata about this action
     */
    get Description(): string;
}
//# sourceMappingURL=reorder-queue.action.d.ts.map