/** * Displays the logo and title at the top of the sidebar. * Automatically switches between full and collapsed logos based on the sidebar state. * * @slot label - The label/name to display next to the logo. Make sure to add the class nv-sidebarlogo-title to the slot. */ export declare class NvSidebarlogo { /****************************************************************************/ /** * The label/name to display next to the logo. */ readonly label?: string; /** * URL of the full logo image (shown when sidebar is expanded). * If not provided, uses a default Nova logo. */ readonly logo?: string; /** * URL of the collapsed logo image (shown when sidebar is collapsed). * If not provided, uses a default Nova icon. */ readonly collapsedLogo?: string; /****************************************************************************/ private readonly defaultLogo; private readonly defaultCollapsedLogo; /****************************************************************************/ render(): any; }