import { CSSProperties, ReactNode, FC } from 'react'; interface AffixProps { offsetTop?: number; offsetBottom?: number; style?: CSSProperties; className?: string; children: ReactNode; onChange?: (affixed?: boolean) => void; target?: () => Window | HTMLElement | null; } declare const KAffix: FC; export { AffixProps, KAffix as default };