vue-styleguidist
Version:
Vue components style guide generator
20 lines (19 loc) • 826 B
TypeScript
import React from 'react';
import PropTypes from 'prop-types';
import { JssInjectedProps } from 'rsg-components/Styled';
declare const localPropTypes: {
classes: PropTypes.Validator<{
[x: string]: string;
}>;
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
toolbar: PropTypes.Requireable<PropTypes.ReactNodeLike>;
id: PropTypes.Validator<string>;
href: PropTypes.Requireable<string>;
depth: PropTypes.Validator<number>;
deprecated: PropTypes.Requireable<boolean>;
parentName: PropTypes.Requireable<string>;
parentHref: PropTypes.Requireable<string>;
};
type SectionHeadingRendererProps = PropTypes.InferProps<typeof localPropTypes> & JssInjectedProps;
declare const _default: React.ComponentType<Omit<SectionHeadingRendererProps, "classes">>;
export default _default;