/** * Attempts to resolve aliased file paths using tsconfig or jsconfig * * returns null if paths could not be resolved, absolute filepath otherwise * @see https://www.typescriptlang.org/tsconfig#paths */ export declare const resolveAliasedImport: ({ location, importFilepath, }: { /** * direcotry where the file with import is located * @example "/Users/foo/project/components/Button" */ location: string; /** * * @example "@/utils/style.module.css" */ importFilepath: string; }) => string | null;