export interface MarpCLIOptions { baseUrl?: string; stdin: boolean; throwErrorAlways: boolean; } export type MarpCLIAPIOptions = Pick; export interface MarpCLICLIOptions { debug?: string | boolean; } export interface ObservationHelper { stop: () => void; } export declare const marpCli: (argv: string[], { baseUrl, stdin: defaultStdin, throwErrorAlways }: MarpCLIOptions) => Promise; export declare const waitForObservation: () => Promise; export declare const apiInterface: (argv: string[], opts?: MarpCLIAPIOptions) => Promise; export declare const cliInterface: (argv: string[]) => Promise;