import { IPaymentNavigationBtnProps } from '../IPaymentCarouselNavigationBtn'; import { IAppStyle } from '../../../theme'; export declare type IPaymentBtnStyle = IAppStyle; interface ISize { height: number; width: number; } export interface IBtnConfig { content: string; bg: { hover: string; active: string; normal: string; disabled: string; }; } export declare function arrowBtnRadius(size: ISize): string; export declare const btnStyle: (direction: 'Left' | 'Right') => IPaymentBtnStyle; export {};