import { EmphasisProps, GlobalProps, GlobalState, MarginProps, WidthProps } from '../../shared/model'; export declare const DividerMarginList: readonly ["none", "_"]; export type DividerMarginType = (typeof DividerMarginList)[number]; export declare const DividerVariantList: readonly ["horizontal", "vertical"]; export type DividerVariantType = (typeof DividerVariantList)[number]; export type DBDividerDefaultProps = { /** * Removes the margin of the divider. */ margin?: DividerMarginType; /** * Changes the orientation of the divider. */ variant?: DividerVariantType; }; export type DBDividerProps = DBDividerDefaultProps & GlobalProps & EmphasisProps & MarginProps & WidthProps; export type DBDividerDefaultState = {}; export type DBDividerState = DBDividerDefaultState & GlobalState;