UNPKG

@baseplate-dev/ui-components

Version:

Shared UI component library

36 lines 1.43 kB
import type React from 'react'; interface SectionListProps { className?: string; children: React.ReactNode; } /** * Represents a list of sections. */ declare function SectionList({ className, children, }: SectionListProps): React.ReactElement; interface SectionProps { className?: string; children: React.ReactNode; } declare function SectionListSection({ className, children, }: SectionProps): React.ReactElement; interface SectionHeaderProps { className?: string; children: React.ReactNode; } declare function SectionListSectionHeader({ className, children, }: SectionHeaderProps): React.ReactElement; interface SectionTitleProps { className?: string; children: React.ReactNode; } declare function SectionListSectionTitle({ className, children, }: SectionTitleProps): React.ReactElement; interface SectionDescriptionProps { className?: string; children: React.ReactNode; } declare function SectionListSectionDescription({ className, children, }: SectionDescriptionProps): React.ReactElement; interface SectionContentProps { className?: string; children: React.ReactNode; } declare function SectionListSectionContent({ className, children, }: SectionContentProps): React.ReactElement; export { SectionList, SectionListSection, SectionListSectionContent, SectionListSectionDescription, SectionListSectionHeader, SectionListSectionTitle, }; //# sourceMappingURL=section-list.d.ts.map