wix-style-react
Version:
wix-style-react
29 lines • 1.18 kB
TypeScript
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<any, any, any> {
constructor(props: any);
constructor(props: any, context: any);
render(): React.JSX.Element;
}
declare namespace TestimonialList {
let displayName: string;
namespace propTypes {
let dataHook: PropTypes.Requireable<string>;
let className: PropTypes.Requireable<string>;
let cols: PropTypes.Requireable<number>;
let testimonials: PropTypes.Requireable<(PropTypes.InferProps<{
avatar: PropTypes.Requireable<PropTypes.ReactNodeLike>;
text: PropTypes.Requireable<string>;
authorName: PropTypes.Requireable<string>;
}> | 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