@lapidist/cv-generator
Version:
Lapidist cv-generator
10 lines (9 loc) • 384 B
TypeScript
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 {};