import { NoteItemProps, Surface } from '../../types.js'; type NoteItemComponentProps = NoteItemProps & { surface?: Surface; }; export declare function NoteItem({ title, description, image, video, surface }: NoteItemComponentProps): import("react/jsx-runtime").JSX.Element; export {};