8 lines
324 B
TypeScript
8 lines
324 B
TypeScript
import * as React from 'react';
|
|
export interface SubNavLinkSectionProps {
|
|
children: React.ReactNode;
|
|
id?: string;
|
|
label: string;
|
|
}
|
|
export declare const SubNavLinkSection: ({ label, children, id }: SubNavLinkSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
//# sourceMappingURL=SubNavLinkSection.d.ts.map
|