import type { FullToken } from '../../theme/internal'; /** Component only token. Which will handle additional calculation of alias token */ export interface ComponentToken { } export interface ButtonToken extends FullToken<'Button'> { colorOutlineDefault: string; buttonPaddingHorizontal: number; colorPrimary: string; colorPrimaryHover: string; colorPrimaryActive: string; textColorPrimary: string; colorDefault: string; colorDefaultHover: string; colorDefaultActive: string; borderColorDefault: string; borderColorDefaultHoverActive: string; textColorDefault: string; colorSecondary: string; colorSecondaryHover: string; colorSecondaryActive: string; borderColorSecondary: string; textColorSecondary: string; } declare const _default: (prefixCls: string) => import("../../theme/internal").UseComponentStyleResult; export default _default;