import { TextToastTextAlign } from './TextToast.types';
declare const CLASS_PREFIX = "md-text-toast";
declare const STYLE: {
    wrapper: string;
    text: string;
};
declare const ALIGNMENTS: Record<string, TextToastTextAlign>;
declare const DEFAULTS: {
    ALIGNMENT: TextToastTextAlign;
};
export { CLASS_PREFIX, DEFAULTS, STYLE, ALIGNMENTS };
