import { default as React } from 'react'; export interface AbyssBackgroundProps { children?: React.ReactNode; variant?: 'default' | 'subtle' | 'hero'; fixed?: boolean; sx?: Record; } declare const AbyssBackground: React.FC; export default AbyssBackground;