import type { ViewProps } from "@tarojs/components/types/View"; import { type CSSProperties, type ReactNode } from "react"; import type { SpaceAlign, SpaceDirection, SpaceJustify, SpaceSize, SpaceWrap } from "./space.shared"; interface SpaceProps extends ViewProps { style?: CSSProperties; direction?: SpaceDirection; size?: SpaceSize; align?: SpaceAlign; justify?: SpaceJustify; wrap?: SpaceWrap; children?: ReactNode; fill?: boolean; } export default function Space(props: SpaceProps): JSX.Element; export {};