import type { CSSProperties } from 'react'; /** Component only token. Which will handle additional calculation of alias token */ export interface ComponentToken { /** * @desc 提示框 z-index * @descEN z-index of Message */ zIndexPopup: number; /** * @desc 提示框背景色 * @descEN Background color of Message */ contentBg: string; /** * @desc 提示框内边距 * @descEN Padding of Message */ contentPadding: CSSProperties['padding']; } /** Register the PurePanel sub-style component for Message. */ export declare const PurePanelStyle: import("react").FunctionComponent; /** Register the main style hook for Message. */ declare const _default: (prefixCls: string, rootCls?: string) => readonly [string, string]; export default _default;