import * as React from "react"; interface AnswerCountOwnProps { questionnaireId: string; } interface AnswerCountStateProps { count: number; total: number; } type AnswerCountProps = AnswerCountStateProps & AnswerCountOwnProps; export declare class AnswerCountImpl extends React.PureComponent { render(): JSX.Element; } export declare const AnswerCount: import("react-redux").ConnectedComponent & AnswerCountStateProps & AnswerCountOwnProps, "count" | "total"> & AnswerCountOwnProps>; export {};