import React from 'react'; import { CSS } from '../theme/stitches.config'; import { SpacerVariantsProps } from './spacer.styles'; interface Props { x?: number; y?: number; css?: CSS; as?: keyof JSX.IntrinsicElements; } declare const defaultProps: { x: number; y: number; }; declare type NativeAttrs = Omit, keyof Props>; export declare type SpacerProps = Props & typeof defaultProps & NativeAttrs & SpacerVariantsProps; declare const _default: React.ComponentType & Omit, "x" | "y">>; export default _default;