import { Intent as BlueprintIntent } from "@blueprintjs/core";
export type IntentBlueprint = BlueprintIntent;
export declare const DefinitionsBlueprint: {
    NONE: "none";
    PRIMARY: "primary";
    SUCCESS: "success";
    WARNING: "warning";
    DANGER: "danger";
};
export type IntentTypes = IntentBlueprint | "neutral" | "accent" | "info";
export declare const Definitions: {
    [key: string]: IntentTypes;
};
export declare const intentClassName: (intent: IntentTypes) => string;
export declare const ClassNames: {
    [key: string]: string;
};
