import React from "react"; export declare const ulBlockVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; interface UlBlockProps { children: React.ReactNode; textColor: string; textSize: string; } export declare function UlBlock({ children, textColor, textSize }: UlBlockProps): React.JSX.Element; export declare const olBlockVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; interface OlBlockProps { children: React.ReactNode; start?: number; textColor: string; textSize: string; } export declare function OlBlock({ children, start, textColor, textSize }: OlBlockProps): React.JSX.Element; export declare const liBlockVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; interface LiBlockProps { children: React.ReactNode; className?: string; textColor: string; textSize: string; } export declare function LiBlock({ children, className, textColor, textSize }: LiBlockProps): React.JSX.Element; export {}; //# sourceMappingURL=List.d.ts.map