import React from "react"; import "./feedback-indicator.scss"; export declare type IndicatorType = "danger" | "warning" | "success" | "none"; export declare type Indicator = FeedbackIndicatorProps; declare type FeedbackIndicatorProps = React.PropsWithChildren<{ /** The type of the indicator. Available values: "danger" | "warning" | "success" */ type: IndicatorType; /** The indicator message. `children` can also be used instead. */ message?: React.ReactNode; /** Disable feedback indicator border */ noBorder?: boolean; /** The feedback indicator identifier. */ id?: string; }>; /** A helper component to display feedback for children content */ export declare const FeedbackIndicator: React.FC; export {};