import { ReactNode, Ref, ElementType, ComponentPropsWithoutRef } from 'react'; interface SurfaceCutContentOwnProps { /** Content rendered inside the cut surface's content layer. */ children?: ReactNode; /** Stretch the content to `h-full`. Default `true`. Set `false` for content sized by intrinsic height. */ fullHeight?: boolean; /** Polymorphic root element. Defaults to `'div'`. */ as?: C; /** Extra classes for the wrapper. */ className?: string; /** Forwarded to the polymorphic root element. */ ref?: Ref; } export type SurfaceCutContentProps = SurfaceCutContentOwnProps & Omit, keyof SurfaceCutContentOwnProps>; /** Shape of `SurfaceCutContent` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */ export type SurfaceCutContentDefaultProps = Partial>; export declare const SurfaceCutContent: (props: SurfaceCutContentProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SurfaceCutContent.d.ts.map