import type { ExtractPropTypes } from 'vue'; import type Divider from './divider.vue'; export type BorderStyle = CSSStyleDeclaration['borderStyle']; export declare const dividerProps: { readonly direction: import("element-plus/es/utils").EpPropFinalized; readonly contentPosition: import("element-plus/es/utils").EpPropFinalized; readonly borderStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string) | (() => string) | ((new (...args: any[]) => string) | (() => string))[], unknown, unknown, "solid", boolean>; }; export type DividerProps = ExtractPropTypes; export type DividerInstance = InstanceType & unknown;