@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
41 lines (40 loc) • 1.46 kB
TypeScript
export default ListItemHeader;
/**
* @deprecated - Components in the legacy folder (/src/legacy) are deprecated. Please use a component from the components folder (/src/components) instead. Legacy components may not follow accessibility standards.
**/
declare class ListItemHeader extends React.PureComponent<any, any, any> {
constructor(props: any);
constructor(props: any, context: any);
state: {
id: any;
};
render(): JSX.Element;
}
declare namespace ListItemHeader {
namespace propTypes {
let children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
let className: PropTypes.Requireable<string>;
let header: PropTypes.Validator<string>;
let id: PropTypes.Requireable<string>;
let isReadOnly: PropTypes.Requireable<boolean>;
let title: PropTypes.Requireable<string>;
let type: PropTypes.Requireable<string>;
}
namespace defaultProps {
let children_1: any;
export { children_1 as children };
let className_1: string;
export { className_1 as className };
let id_1: string;
export { id_1 as id };
let isReadOnly_1: boolean;
export { isReadOnly_1 as isReadOnly };
let title_1: string;
export { title_1 as title };
let type_1: string;
export { type_1 as type };
}
let displayName: string;
}
import React from 'react';
import PropTypes from 'prop-types';