import { PharosElement } from '../base/pharos-element'; import type { TemplateResult, CSSResultArray } from 'lit'; import { PharosHeading } from '../heading/pharos-heading'; declare const PharosSidenavSection_base: typeof PharosElement; /** * Pharos sidenav section component. * * @tag pharos-sidenav-section * * @slot - Contains the content of the section (the default slot). * */ export declare class PharosSidenavSection extends PharosSidenavSection_base { static elementDefinitions: { 'pharos-heading': typeof PharosHeading; }; /** * Indicates the label to apply to the section. * @attr label */ label?: string; /** * Indicates if the section should contain a divider. * @attr show-divider */ showDivider: boolean; static get styles(): CSSResultArray; private _renderLabel; private _renderDivider; protected render(): TemplateResult; } export {}; //# sourceMappingURL=pharos-sidenav-section.d.ts.map