import React from 'react';
export type NoticeVariant = 'success' | 'error' | 'warning' | 'info';
interface NoticeProps {
    /** タイトル行 */
    title: string;
    /** サブメッセージ複数行 */
    messages?: string | string[];
    /** 通知タイプ */
    variant?: NoticeVariant;
}
/**
 * 枠付き通知ボックス
 *
 * variant に応じて枠線とタイトルのカラーが変わる
 */
export declare const Notice: React.FC<NoticeProps>;
export {};
//# sourceMappingURL=Notice.d.ts.map