import { RunOptions } from 'substreams-sink';
export { logger } from 'substreams-sink';

declare const DEFAULT_SLACK_API_TOKEN_ENV = "SLACK_API_TOKEN";
interface ActionOptions extends RunOptions {
    config: string;
    slackApiTokenEnvvar: string;
    slackApiToken: string;
}
declare function action(manifest: string, moduleName: string, options: ActionOptions): Promise<void>;

export { DEFAULT_SLACK_API_TOKEN_ENV, action };
