import React from 'react'; import { Root as AccessibleStack } from './styled-components'; import { GenericComponentType } from '../../types'; type IProps = Omit, 'direction'>; type StackProps = { divider?: any; direction?: React.ComponentProps['flexDirection']; space?: React.ComponentProps['gap']; }; export type IStackComponentType = GenericComponentType; export declare const Stack: IStackComponentType>>; export {};