import { ReactNode, Ref, ComponentPropsWithoutRef } from 'react'; interface ListTitleOwnProps { /** Title content (typically a short uppercase label). */ children?: ReactNode; /** Extra classes for the title root. */ className?: string; /** Forwarded to the underlying `
`. */ ref?: Ref; } export type ListTitleProps = ListTitleOwnProps & Omit, keyof ListTitleOwnProps>; /** Shape of `ListTitle` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */ export type ListTitleDefaultProps = Partial>; export declare const ListTitle: (props: ListTitleProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ListTitle.d.ts.map