export interface UIPanelTitleProps { text: string; withZoomingIcon?: boolean; isZooming: boolean; shouldShowInner?: boolean; rangeControl: 'left' | 'right' | 'none'; /** * both : 双向剪头 * * plain-only & none 仅用于控制 "range 内侧" 的剪头按钮 * plain-only : 只显示 "月份切换剪头" * none : 都不显示 */ rangeShowType: 'both' | 'plain-only' | 'none'; onFastLeftClick: () => void; onFastRightClick: () => void; onPlainLeftClick?: () => void; onPlainRightClick?: () => void; onZoomingClick?: () => void; } /** * * @param props * @constructor */ export declare const UiPanelTitle: (props: UIPanelTitleProps) => import("react/jsx-runtime").JSX.Element;