import type { ComponentPropsWithRef, ElementType } from 'react'; export type SurfaceProperties = { /** Type of Surface */ surfaceType?: 'alternate'; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Styles container to be used for alternate backgrounds. * @docs {@link https://design.visa.com/base-elements/surface/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Surface: { ({ className, surfaceType, tag: Tag, ...remainingProps }: SurfaceProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Surface;