import * as React from "react"; import type { SurfaceOwnProps, PolymorphicWithRef } from "../types"; import { SurfaceBase } from "../base-components"; type SurfaceProps = PolymorphicWithRef< T, SurfaceOwnProps >; type SurfaceElement = ( props: SurfaceProps ) => React.ReactElement>; const Surface: SurfaceElement = React.forwardRef( ( props: SurfaceProps, innerRef: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default Surface;