import type { CSSProperties, ReactNode } from 'react'; import type { SENTIMENTS } from '../../theme'; import type { PROMINENCES, SIZES } from './constants'; type ProminenceType = keyof typeof PROMINENCES; type BulletProps = { className?: string; size?: keyof typeof SIZES; tooltip?: string; tooltipBaseId?: string; sentiment?: (typeof SENTIMENTS)[number]; 'data-testid'?: string; prominence?: ProminenceType; children?: ReactNode; disabled?: boolean; style?: CSSProperties; }; export declare function Bullet({ className, sentiment, size, tooltip, tooltipBaseId, 'data-testid': dataTestId, prominence, children, disabled, style, }: BulletProps): import("react").JSX.Element; export declare namespace Bullet { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map