import { SpacingType } from "../../../types"; export interface ListItemsProps { children: any; spacing?: SpacingType; tag?: 'ol' | 'ul'; } export declare const ListItems: ({ children, tag, spacing, ...props }: ListItemsProps) => import("@emotion/react/jsx-runtime").JSX.Element;