import { SharedConfig } from './webpack.types'; export declare const DEFAULT_SKIP_LIST: string[]; export declare const DEFAULT_SECONDARIES_SKIP_LIST: string[]; type IncludeSecondariesOptions = { skip: string | string[]; } | boolean; type CustomSharedConfig = SharedConfig & { includeSecondaries?: IncludeSecondariesOptions; }; type ConfigObject = Record; type Config = (string | ConfigObject)[] | ConfigObject; export declare function findRootTsConfigJson(): string; export declare function shareAll(config?: CustomSharedConfig, skip?: string[], packageJsonPath?: string): Config; export declare function setInferVersion(infer: boolean): void; export declare function share(shareObjects: Config, packageJsonPath?: string, skip?: string[]): Config; export {};