import type { Theme } from '@cleartrip/ct-design-theme'; import type { DividerLineStyle, DividerOrientation } from './type'; declare const staticStyles: { rootHorizontal: { width: "100%"; }; rootVertical: { height: "100%"; }; }; export interface IDividerDynamicStyleArgs { theme: Theme; orientation: DividerOrientation; dividerColor?: string; dividerType: DividerLineStyle; dividerWidth: number | string; dividerLength: number | string; } export declare function getDividerStylesWeb({ theme, orientation, dividerColor, dividerType, dividerWidth, dividerLength, }: IDividerDynamicStyleArgs): { width: string; height: string | number; borderRightWidth: string; borderRightStyle: DividerLineStyle; borderRightColor: string; borderBottomWidth?: undefined; borderBottomStyle?: undefined; borderBottomColor?: undefined; } | { width: string | number; borderBottomWidth: string; borderBottomStyle: DividerLineStyle; borderBottomColor: string; height?: undefined; borderRightWidth?: undefined; borderRightStyle?: undefined; borderRightColor?: undefined; }; export declare function getDividerStylesNative({ theme, orientation, dividerColor, dividerType, dividerWidth, dividerLength, }: IDividerDynamicStyleArgs): { width: number; height: string | number; borderRightWidth: number; borderStyle: DividerLineStyle; borderRightColor: string; borderBottomWidth?: undefined; borderBottomColor?: undefined; } | { width: string | number; borderBottomWidth: number; borderStyle: DividerLineStyle; borderBottomColor: string; height?: undefined; borderRightWidth?: undefined; borderRightColor?: undefined; }; export default staticStyles; //# sourceMappingURL=style.d.ts.map