@hashicorp/design-system-components
Version:
Helios Design System Components
26 lines (25 loc) • 705 B
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import type { HdsSideNavListSignature } from '../list/index';
export interface PortalSignature {
Args: {
target: string;
renderInPlace?: boolean;
fallback?: 'inplace';
};
Blocks: {
default: [];
};
}
export interface HdsSideNavPortalSignature {
Args: PortalSignature['Args'] & {
ariaLabel?: string;
targetName?: string;
};
Blocks: HdsSideNavListSignature['Blocks'];
Element: HTMLDivElement;
}
declare const HdsSideNavPortal: import("@ember/component/template-only").TemplateOnlyComponent<HdsSideNavPortalSignature>;
export default HdsSideNavPortal;