export type NotePlanYesNo = 'yes' | 'no'; export type NotePlanXSuccess = { /** * Callback URL to open after NotePlan processes the action. */ xSuccess?: string; }; export type AtLeastOne = Omit & { [K in Keys]-?: Required> & Partial>>; }[Keys]; export declare function notePlanUrl(action: string, params?: Record, trailingSlash?: boolean): string; export declare function xSuccessParam(xSuccess: string | undefined): { 'x-success': string; } | { 'x-success'?: undefined; };