export interface NotaryScript { id?: string; text: string; title: string; } export declare type NotaryScriptKeys = keyof NotaryScript; export interface NotaryScripts { items: NotaryScript[]; }