UNPKG

@engie-group/fluid-design-system-react

Version:

Fluid Design System React

20 lines (19 loc) 676 B
import { SubHeaderProperties } from '@engie-group/fluid-types'; import { HTMLAttributes, ReactNode } from 'react'; type NJSubHeaderSlots = { /** * Slot for footer content */ footer?: ReactNode; /** * Slot for featured content */ featured?: ReactNode; /** * Slot for see all link */ seeAllLink?: ReactNode; }; export type NJSubHeaderProps = SubHeaderProperties & NJSubHeaderSlots & HTMLAttributes<HTMLDivElement>; export declare const NJSubHeader: import("react").ForwardRefExoticComponent<SubHeaderProperties & NJSubHeaderSlots & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>; export {};