import { ReactNode } from 'react'; declare type ListProps = { children: ReactNode; type?: 'unordered' | 'ordered'; }; export declare function List({ type, children }: ListProps): JSX.Element; export {};