import { Config } from 'jest';

type DeclarePackageConfigOptions = Config & {
    projectRoot: string;
    isNode?: boolean;
    displayName?: string;
};
/**
 * Config for Jest unit tests
 *
 * @remarks Please see [the Jest documentation](https://jestjs.io/docs/configuration#projects-arraystring--projectconfig) for more information.
 *
 * @param options The options for the Jest configuration
 * @returns The Jest configuration
 */
declare function declarePackage(options: DeclarePackageConfigOptions): Config;

export { type DeclarePackageConfigOptions, declarePackage };
