/// <reference types="react" />
import { BasicComponent } from '../../utils/typings';
export interface VotePageRulesCardProps extends BasicComponent {
    visible: boolean;
    title: string;
    content: string;
    bgImage: string;
    colseIcon: string;
    onClick: () => void;
}
export declare const VotePageRulesCard: {
    (props: VotePageRulesCardProps): JSX.Element;
    displayName: string;
};
