import type { Snippet } from 'svelte'; export type NoteTone = 'default' | 'yellow' | 'green' | 'sky' | 'rose'; interface NoteCardProps { title?: string; body: string; author?: string; avatar?: string; date?: Date | string | number; tone?: NoteTone; class?: string; actions?: Snippet; onpin?: () => void; } declare const NoteCard: import("svelte").Component; type NoteCard = ReturnType; export default NoteCard;