import React from 'react'; import { InterfaceBoxProps } from '../Box'; import type { CustomProps } from '../../../components/types'; export interface InterfaceZStackProps extends InterfaceBoxProps { /** * The direction to stack the elements. */ reversed?: boolean; } export declare type IZStackProps = InterfaceZStackProps & CustomProps<'ZStack'>; declare const _default: React.MemoExoticComponent>>; export default _default;