import { Ref, ComputedRef } from 'vue'; import { Props, USEComputeStyle } from './types'; /** * 计算样式 */ export declare const useComputeStyle: ({ point, width, height }: USEComputeStyle.Option) => { wrapStyle: Record; fwrapStyle: Record; itemStyle: Record; shadowStyle: Record; turnItemStyle: Record; turnShadowStyle: Record; }; /** * 倒计时 */ export declare const useTurnPage: (props: Readonly>, current: Ref) => { getItemStyle: ComputedRef<(index: number) => { zIndex?: undefined; } | { zIndex: number; }>; wrapStyle: Ref, Record>; fwrapStyle: Ref, Record>; itemStyle: Ref, Record>; shadowStyle: Ref, Record>; turnItemStyle: Ref, Record>; turnShadowStyle: Ref, Record>; current: Ref; showValue: (index: number, style: Record) => "" | Record; }; /** * 初始化样式 */ export declare const useStyle: (props: Readonly>) => { getStyle: ComputedRef<{ width: string | number; height: string | number; '--max-z-index': number; }>; };