import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type PipeParts = { pipe: ''; }; declare type PipeDOMProps = React.ComponentPropsWithRef<'div'>; declare type PipeStyleConfigProp = { styleConfig?: StyleConfig; }; declare type PipeSystemProps = BoxSystemProps; export declare type PipeProps = PipeDOMProps & PipeStyleConfigProp & PipeSystemProps & { as?: React.ElementType; }; export declare const Pipe: React.ForwardRefExoticComponent & React.RefAttributes>; export {};