import { ColorStyle, Locale, ThemeMode } from '../@types/enums'; import { PayButtonProps } from '../@types'; interface ButtonStyle { buttonStyle?: PayButtonProps['buttonStyle']; theme?: ThemeMode; colorStyle?: ColorStyle; locale?: Locale; } export declare const useButtonStyle: ({ buttonStyle, theme, colorStyle, locale }: ButtonStyle) => { gradientColor: string | undefined; backgroundColor: string | undefined; titleAsset: string | undefined; }; export {};