import * as React from 'react'; import { FlexProps } from '../layout'; import VoteInfoBody from './VoteInfo.body'; import VoteInfoHeader from './VoteInfo.header'; export interface VoteInfoProps extends FlexProps { } type SubComponents = { Header: typeof VoteInfoHeader; Body: typeof VoteInfoBody; ProgressBar: typeof ProgressBar; }; declare const ProgressBar: (props: any) => React.JSX.Element; declare const VoteInfo: React.FC & SubComponents; export default VoteInfo;