import { StackProps } from './types'; /** * MUI-free `Stack`: a flex container with `direction` and `spacing` (× 8px gap) and optional * `divider` between children. Scalar direction/spacing only — responsive breakpoint objects are not * reproduced (rare on this library's usage). TASK-102. */ export declare const Stack: ({ direction, spacing, divider, className, sx, style, component, children, useFlexGap: _useFlexGap, ...rest }: StackProps) => JSX.Element;