import type { PropsWithChildren } from 'react';
import React from 'react';
interface BulletListProps {
    maxWidth?: number | string;
    gap?: number;
}
export declare function BulletList({ children, maxWidth, gap, }: PropsWithChildren<BulletListProps>): React.JSX.Element;
export declare function BulletItem({ children }: PropsWithChildren<unknown>): React.JSX.Element;
export {};
