import { CSSProperties } from 'react';

export type GapProps = {
	height?: number;
	width?: number;
	className?: string;
	style?: CSSProperties;
	inline?: boolean;
};
/**
 * 间隙组件
 * @param props
 * @returns
 */
export declare const Gap: (props: GapProps) => import("react").JSX.Element;

export {};
