import type { ViewStyle, StyleProp } from 'react-native'; import type { DashProps } from './interface'; declare type Params = Required> & Pick; /** * 判断主轴是否是横轴 */ export declare const isStyleRow: (style: StyleProp) => boolean; declare const createDashStyleSheet: ({ dashGap, dashLength, dashThickness, dashColor }: Params, isRow: boolean) => { backgroundColor: import("react-native").ColorValue; height: number; marginBottom: number; marginRight: number; width: number; }; export declare const getDashStyle: (props: Params) => ReturnType; export {};