10 lines
385 B
TypeScript
10 lines
385 B
TypeScript
import * as React from 'react';
|
|
export interface SubNavSectionProps {
|
|
badgeLabel?: string;
|
|
children: React.ReactNode;
|
|
collapsable?: boolean;
|
|
id?: string;
|
|
label: string;
|
|
}
|
|
export declare const SubNavSection: ({ collapsable, label, badgeLabel, children, id }: SubNavSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
//# sourceMappingURL=SubNavSection.d.ts.map
|