import type { Component, ExtractPropTypes, PropType } from 'vue'; export declare const dividerVariants: readonly ["full-width", "inset"]; export type DividerVariants = typeof dividerVariants[number]; export declare const dividerOrientations: readonly ["horizontal", "vertical"]; export type DividerOrientations = typeof dividerOrientations[number]; export declare const dividerTextAlignments: readonly ["left", "center", "right"]; export type DividerTextAlignments = typeof dividerTextAlignments[number]; export declare const dividerProps: { variant: import("@interface-ui/utils").InPropFinalized<(new (...args: any[]) => "inset" | "full-width") | (() => "inset" | "full-width") | ((new (...args: any[]) => "inset" | "full-width") | (() => "inset" | "full-width"))[], "inset" | "full-width", unknown, string, boolean>; orientation: import("@interface-ui/utils").InPropFinalized<(new (...args: any[]) => "horizontal" | "vertical") | (() => "horizontal" | "vertical") | ((new (...args: any[]) => "horizontal" | "vertical") | (() => "horizontal" | "vertical"))[], "horizontal" | "vertical", unknown, string, boolean>; textAlign: import("@interface-ui/utils").InPropFinalized<(new (...args: any[]) => "center" | "left" | "right") | (() => "center" | "left" | "right") | ((new (...args: any[]) => "center" | "left" | "right") | (() => "center" | "left" | "right"))[], "center" | "left" | "right", unknown, string, boolean>; component: import("@interface-ui/utils").InPropFinalized<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown, string, boolean>; noMargin: import("@interface-ui/utils").InPropFinalized; cs: { readonly type: PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export type DividerProps = ExtractPropTypes;