import { ActionsProvider, ActionResult, PrePostCommand } from './actionsProvider.js';
export declare class PublishCommunityAction extends ActionsProvider {
    getLabel(): string;
    checkParameters(cmd: PrePostCommand): Promise<ActionResult | null>;
    run(cmd: PrePostCommand): Promise<ActionResult>;
}
