vue-styleguidist
Version:
Vue components style guide generator
22 lines (21 loc) • 912 B
TypeScript
import React from 'react';
import PropTypes from 'prop-types';
declare const localPropTypes: {
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
id: PropTypes.Validator<string>;
slotName: PropTypes.Validator<string>;
slotProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
isolated: PropTypes.Validator<boolean>;
parentComponent: PropTypes.Requireable<PropTypes.InferProps<{
href: PropTypes.Validator<string>;
visibleName: PropTypes.Validator<string>;
}>>;
}>>>;
href: PropTypes.Requireable<string>;
depth: PropTypes.Validator<number>;
deprecated: PropTypes.Requireable<boolean>;
pagePerSection: PropTypes.Requireable<boolean>;
};
type SectionHeadingProps = PropTypes.InferProps<typeof localPropTypes>;
declare const SectionHeading: React.FunctionComponent<SectionHeadingProps>;
export default SectionHeading;