import { ReactNode, Ref, HTMLAttributes } from 'react'; export interface ListSeparatorProps extends HTMLAttributes { /** Optional content rendered on the divider (rarely used). */ children?: ReactNode; /** Extra classes for the separator root. */ className?: string; /** Forwarded to the underlying `
`. */ ref?: Ref; } /** Shape of `ListSeparator` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */ export type ListSeparatorDefaultProps = Partial>; export declare const ListSeparator: (props: ListSeparatorProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ListSeparator.d.ts.map