import Tailwind from '../base/tailwind-base'; /** * @tag plus-divider * @since 0.0.0 * @status stable * * PlusDivider component is used to visually separate content in a list or group. * * @slot - The default slot for optional divider content (for text dividers) * * @csspart divider - The component's base wrapper * @csspart label - The text content container * * @cssproperty --divider-color - Controls the color of the divider * @cssproperty --divider-thickness - Controls the thickness of the divider * @cssproperty --divider-spacing - Controls the spacing around the divider */ export default class PlusDivider extends Tailwind { /** * The orientation of the divider. * @default 'horizontal' */ orientation: 'horizontal' | 'vertical'; /** * The Kind of the divider. * @default 'solid' */ kind: 'solid' | 'dashed' | 'dotted'; /** * The position of the text content (only applicable with hasContent=true) * @default 'center' */ contentPosition: 'left' | 'center' | 'right'; /** * The thickness of the divider * @default 'thin' */ thickness: 'thin' | 'medium' | 'thick'; /** * Whether the divider has content or not * @default false */ hasContent: boolean; static styles: import("lit").CSSResult[]; handleSlotChange(event: Event): void; render(): import("lit-html").TemplateResult<1>; } export { PlusDivider }; //# sourceMappingURL=divider.d.ts.map