import React, { type ReactNode } from "react"; export interface FeedbackBoxProps { variant?: "success" | "info" | "warning" | "error"; border?: "none" | "rounded" | "squared"; roundedBorder?: boolean; messages?: { title: string; }; icon?: boolean; children?: ReactNode; className?: { root?: string; title?: string; titleContainer?: string; }; } export declare const FeedbackBox: ({ variant, border, messages, icon, children, className, }: FeedbackBoxProps) => React.JSX.Element; //# sourceMappingURL=feedback-box.d.ts.map