import { ParserOptions } from '@babel/parser'; export interface UserConfig { babelOptions: ParserOptions; } /** * Gets the postcss-lit config from package.json if it exists * @param {string} key Config key to search for * @return {PackageConfig} */ export declare function getUserConfig(key: string): UserConfig;