import { FunctionComponent } from 'react'; import { MouseState } from '../../domain'; export interface IPaymentNavigationBtnProps { className?: string; size: 'md' | 'lg'; state?: MouseState; onClick?: () => void; disabled?: boolean; } export declare type IPaymentCarouselNavigationBtn = FunctionComponent;