import { h } from 'preact'; interface FixedImageProps { src: string; alt?: string; width?: number | string; height?: number | string; top?: number | string; style?: preact.JSX.CSSProperties; } export declare function FixedImage({ src, alt, width, height, top, style }: FixedImageProps): h.JSX.Element | null; export {};