import React, { type ReactNode } from 'react'; import { type FlexInlineComponentProps } from '../Flex/FlexInline'; export interface BulletTextProps extends Pick { bullet?: ReactNode; variant?: 'primary' | 'secondary'; } export declare const BulletText: ({ as: Component, variant, children, bullet: Bullet, }: BulletTextProps) => React.JSX.Element; //# sourceMappingURL=BulletText.d.ts.map