export declare function build(path: string, params?: Params): string; export declare function prepare(host: string, ...values: (string | number | boolean)[]): any; export type Params = { [name: string]: any; }; declare const _default: { build: typeof build; prepare: typeof prepare; }; export default _default;