import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; import { type GlassVariant } from '../../../lib/glass'; export interface WatermarkProps extends Omit, 'content'> { zIndex?: number; rotate?: number; width?: number; height?: number; image?: string; content?: string | string[]; font?: { color?: string; fontSize?: number | string; fontWeight?: 'normal' | 'light' | 'weight' | number; fontStyle?: 'none' | 'normal' | 'italic' | 'oblique'; fontFamily?: string; }; gap?: [number, number]; offset?: [number, number]; children?: React.ReactNode; className?: string; /** Glass morphism variant */ glass?: GlassVariant; } export declare const Watermark: React.FC; //# sourceMappingURL=Watermark.d.ts.map