import type { CSSProperties } from 'react'; import type { SENTIMENTS } from './constant'; type StatusSentiment = (typeof SENTIMENTS)[number]; type StatusProps = { animated?: boolean; className?: string; sentiment: StatusSentiment; tooltip?: string; 'data-testid'?: string; /** * This prop will set status as a notification and make it absolute to its parent displayed on top right. */ notification?: boolean; style?: CSSProperties; }; export declare function Status({ animated, className, tooltip, sentiment, 'data-testid': dataTestId, notification, style, }: StatusProps): import("react").JSX.Element; export declare namespace Status { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map