/// <reference types="react" />
import { BasicComponent } from '../../utils/typings';
export type RightDataItemType = "push" | "model";
interface RightDataItemModel {
    title: string;
    type?: RightDataItemType;
    todo?: string;
}
export interface VotePageCardProps extends BasicComponent {
    backgroundImage: string;
    rightDataList: RightDataItemModel[];
    rightDataListClick: (index: number) => void;
    miniRightDataClickRules: () => void;
    miniRightDataClickShare: () => void;
    handlerSaveClick?: (data: any) => void;
    data: any;
    showResult?: boolean;
    moreRoute?: string;
    resultRoute?: string;
}
export declare const VotePageCard: {
    (props: VotePageCardProps): JSX.Element;
    displayName: string;
};
export {};
