import { NostrEvent } from '@nostr-dev-kit/ndk'; export declare const SUBMIT_STATE_ADD = ""; export declare const SUBMIT_STATE_REMOVE = "remove"; export interface Submit { event: NostrEvent; authorPubkey: string; eventAddress: string; pubkey: string; kind: number; relay: string; hashtags: string[]; state: string; }