import { MessageThemeList } from './type';
export declare const THEME_ARRAY: MessageThemeList[];
export declare const PlacementOffset: {
    center: {
        left: string;
        top: string;
        transform: string;
    };
    left: {
        left: string;
        top: string;
        transform: string;
    };
    bottom: {
        bottom: string;
        left: string;
        transform: string;
    };
    right: {
        right: string;
        top: string;
        transform: string;
    };
    top: {
        top: string;
        left: string;
        transform: string;
    };
    'top-left': {
        left: string;
        top: string;
    };
    'top-right': {
        right: string;
        top: string;
    };
    'bottom-left': {
        left: string;
        bottom: string;
    };
    'bottom-right': {
        right: string;
        bottom: string;
    };
};
