import type { DividerProps } from './interface'; declare type Params = Pick; export declare const createStyle: (theme: DiceUI.Theme, { dashed, hairline, contentPosition }: Params) => { divider: { alignItems: "center"; flexDirection: "row"; marginVertical: number; }; line: { borderBottomWidth: number; borderColor: string; borderStyle: "solid" | "dashed"; flex: number; height: number; }; lineLeft: { marginRight: number; maxWidth: string; }; lineRight: { marginLeft: number; maxWidth: string; }; text: { color: string; fontSize: number; lineHeight: number; }; }; export {};