import type { PackageFileContent } from '../types';
import { type PixiConfig } from './schema';
export declare function getUserPixiConfig(content: string, packageFile: string): null | PixiConfig;
export declare function extractPackageFile(content: string, packageFile: string): Promise<PackageFileContent | null>;
