export declare const AlertWidget: React.FC<{ variant: "red" | "amber" | "gray"; /** * This accepts two types, `string` and `React.ReactNode`, * when a string, it will be rendered as * * @example * ```tsx * * {props.content} * * ``` * * Depending on the variant picked. * * In case you decide to pass a `React.ReactNode`, make sure to * comply with the correct text color to match. See example for reference. */ content: string | React.ReactNode; }>;