import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; import { type GlassVariant } from '../../../lib/glass'; export interface AffixProps extends Omit, 'onChange'> { offsetTop?: number; offsetBottom?: number; target?: () => Window | HTMLElement | null; onChange?: (affixed?: boolean) => void; children: React.ReactNode; /** Glass morphism variant */ glass?: GlassVariant; className?: string; style?: React.CSSProperties; } export declare const Affix: React.ForwardRefExoticComponent>; //# sourceMappingURL=Affix.d.ts.map