@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
27 lines (26 loc) • 695 B
TypeScript
/**
* HTML Element
*
*/
import React from 'react';
import { ElementProps } from '../Element';
export type OlProps = {
/**
* Defines the position of the marker
*/
inside?: boolean;
/**
* Defines the position of the marker (default)
*/
outside?: boolean;
/**
* Will ensure a nested structure of several lists
*/
nested?: boolean;
};
export type OlAllProps = OlProps & React.AllHTMLAttributes<HTMLOListElement> & Omit<ElementProps, 'skeleton' | 'skeletonMethod'>;
declare const Ol: {
({ nested, inside, outside, ...props }?: OlAllProps): import("react/jsx-runtime").JSX.Element;
_supportsSpacingProps: boolean;
};
export default Ol;