import * as React from "react"; import { StateCallBack } from "./types"; interface LeftArrowProps { customLeftArrow?: React.ReactElement | null; getState: () => StateCallBack; previous: () => void; } interface RightArrowProps { customRightArrow?: React.ReactElement | null; getState: () => StateCallBack; next: () => void; } declare const LeftArrow: ({ customLeftArrow, getState, previous }: LeftArrowProps) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>; declare const RightArrow: ({ customRightArrow, next, getState }: RightArrowProps) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>; export { LeftArrow, RightArrow };