/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type FC, type ReactNode } from 'react';
declare const Stack: FC<{
    children: ReactNode;
    testId?: string;
    'aria-label': string;
}>;
export default Stack;
