import * as React from "react"; import { Bulma } from "./../../bulma"; export interface PageControl extends Bulma.Render, Bulma.Tag, Bulma.Active, Bulma.Focused, React.HTMLProps { isPrevious?: boolean; isNext?: boolean; } export declare function PageControl({ tag, render, ...props }: PageControl): any; declare const HOC: React.StatelessComponent & React.HTMLProps & Bulma.Helpers>; export default HOC;