UNPKG

alouette

Version:

A modern, customizable design system built on top of NativeWind v5 with configurable defaults

25 lines 988 B
import { type ReactNode } from "react"; import type { Accent, AlouetteModeTheme } from "../../core/AlouetteConfig"; export interface StorySectionProps { title: ReactNode; children: ReactNode; level?: 1 | 2; modeTheme?: AlouetteModeTheme; accent?: Accent; withSurface?: boolean; } declare function StorySection({ title, children, level, modeTheme, accent, withSurface, }: StorySectionProps): ReactNode; declare function StorySubSection({ title, children, modeTheme, accent, withSurface, }: StorySectionProps): ReactNode; export interface StoryProps { documentation?: NonNullable<ReactNode>; children?: NonNullable<ReactNode>; noDarkMode?: boolean; } export declare function Story({ documentation, children, noDarkMode, }: StoryProps): ReactNode; export declare namespace Story { export { StorySection as Section }; export { StorySubSection as SubSection }; } export declare const accents: Accent[]; export {}; //# sourceMappingURL=Story.d.ts.map