import type { PropOption } from './getPropOptions'; export type ParamsInfo = { ancestorFrourio: string | undefined; middleNames: string[]; current: { name: string; param: PropOption | null; array: { isOptional: boolean; } | undefined; } | undefined; }; export declare const pathToParams: (frourioDirs: string[], dirPath: string, param: PropOption | null) => ParamsInfo | undefined; export type ClientParamsInfo = { ancestors: { name: string; importPath: string; hash: string; }[]; middleNames: string[]; current: ParamsInfo['current']; }; export declare const pathToClientParams: (appDir: string, hasParamDict: Record, dirPath: string, param: PropOption | null) => ClientParamsInfo | undefined; export declare const paramsToText: (params: ParamsInfo) => string; export declare const clientParamsToText: (hash: string, params: ClientParamsInfo) => string; //# sourceMappingURL=paramsUtil.d.ts.map