import { PropsWithChildren } from 'react'; export type ListProps = PropsWithChildren<{ seperated?: boolean; /** * Custom class name */ className?: string; }>; export declare const List: (props: { seperated?: boolean | undefined; /** * Custom class name */ className?: string | undefined; } & { children?: import("react").ReactNode; } & import("react").RefAttributes) => import("react").ReactElement> | null;