import { LitElement } from '../../../../../node_modules/lit'; import { DividerPart, SbDividerProps as Props } from './divider.types'; /** * Visually separates sections, accepting an optional inline label. * * @part divider - rtg-field-separator: root */ export declare class SbDivider extends LitElement implements Props { static readonly ROOT = "divider"; static readonly TAG: string; static readonly PARTS: Record; /** * Substring used in generated part IDs. */ seed: string; /** * Custom ID used as the root part ID and as the base of subpart IDs. */ customId?: string; /** * Optional text used as the divider label. */ label?: string; protected createRenderRoot(): this; get rootId(): string; render(): import('../../../../../node_modules/lit-html').TemplateResult<1>; }