UNPKG

@fluentui/react-northstar

Version:
15 lines (14 loc) 565 B
import { BoxProps } from '../Box/Box'; export interface ListItemHeaderOwnProps { hasContent?: boolean; hasHeaderMedia?: boolean; truncate?: boolean; } export interface ListItemHeaderProps extends ListItemHeaderOwnProps, BoxProps { } export declare type ListItemHeaderStylesProps = ListItemHeaderOwnProps; export declare const listItemHeaderClassName = "ui-list__itemheader"; /** * Provides a header for the ListItem. */ export declare const ListItemHeader: import("@fluentui/react-bindings").ComponentWithAs<"div", ListItemHeaderOwnProps & BoxProps>;