export default TestimonialList; /** TestimonialList is a group of layouts that display avatar, description and name. It's used in a footer of a marketing page layout. */ declare class TestimonialList extends React.Component { constructor(props: any); constructor(props: any, context: any); render(): React.JSX.Element; } declare namespace TestimonialList { let displayName: string; namespace propTypes { let dataHook: PropTypes.Requireable; let className: PropTypes.Requireable; let cols: PropTypes.Requireable; let testimonials: PropTypes.Requireable<(PropTypes.InferProps<{ avatar: PropTypes.Requireable; text: PropTypes.Requireable; authorName: PropTypes.Requireable; }> | null | undefined)[]>; } namespace defaultProps { let cols_1: number; export { cols_1 as cols }; let testimonials_1: never[]; export { testimonials_1 as testimonials }; } } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=TestimonialList.d.ts.map