export * from "./types";
export { SpeedyBot } from "./speedybot";
export { SpeedyCard } from "./cards";
export declare const CONSTANTS: {
    submitToken: string;
    CHIP_LABEL: string;
    invalidMessage: string;
    unwrapLabel: string;
    destroyLabel: string;
    action_delete: string;
};
export type { SurveyQuestion, SurveyQuestionType } from "./cards";
export declare const botTokenKey = "BOT_TOKEN";
export declare const webhookSecretKey = "WEBHOOK_SECRET";
export declare const botPlaceholder = "__REPLACE__ME__";
import { RequestOps } from "./types";
export declare const mainRequester: (url: string, body: any, opts?: RequestOps) => Promise<Response>;
export declare const logoRoll: (idx?: number) => string;
