/** @jsx jsx */ import React from "react"; import { ListItem } from "../ListItem"; interface Props extends React.ComponentProps { /** * Add a number as a right adornment. Usually used to express a count */ count?: React.ReactNode; } /** * Heading intended to be used in a list. Can also be used to deliniate between * sections in a single list. * * Composed with and accepts all props of `ListItem` */ export declare const ListHeading: React.ForwardRefExoticComponent, "as" | "className" | "onClick" | "style" | "role" | "endIconAs" | "startIconAs" | "children" | "endIcon" | "highlighted" | "interactive" | "selected" | "startIcon" | "count" | "key"> & React.RefAttributes>; export {};