/**
 * Provides an interface os a _paq command list.
 */
export type Paq = Array<(string | {
    [param: string]: string;
})>;
