import * as React from 'react'; import { FlexProps } from '../layout'; import VoteInfoHeaderLabel from './VoteInfo.header.label'; export interface VoteInfoHeaderProps extends FlexProps { infoLabel?: string; } type SubComponents = { Label: typeof VoteInfoHeaderLabel; }; declare const VoteInfoHeader: React.FC & SubComponents; export default VoteInfoHeader;