import { LitElement } from '../../../../../node_modules/lit'; import { EditIdentifierProps as Props, EditIdentifierParts } from './edit-identifier.types'; export declare class SbEditIdentifier extends LitElement implements Props { static readonly ROOT = "edit-identifier"; static readonly ICON = "icon"; static readonly TAG: string; static readonly CLICK_EVENT: 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; /** * Controls what the button renders: icon only, label only, or both. */ identifier: string; /** * Event identifier forwarded to the authentication service on click. * When omitted, only the custom click event is dispatched. */ event: string; protected createRenderRoot(): this; get rootId(): string; get iconId(): string; connectedCallback(): void; disconnectedCallback(): void; private _handleClick; render(): import('../../../../../node_modules/lit-html').TemplateResult<1>; }