/* eslint-disable */ import type { FunctionComponent } from 'react' import type { StackProperties } from '../patterns/stack'; import type { HTMLPandaProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface StackProps extends StackProperties, DistributiveOmit, keyof StackProperties > {} export declare const Stack: FunctionComponent