import { SetupAllMocksOptions } from "./setupAllMocks"; /** * Options for configuring the setupBasicMocks function. * Currently shares the same options structure as SetupAllMocksOptions. */ export type SetupBasicMocksOptions = SetupAllMocksOptions; /** * Sets up essential testing mocks with no external library dependencies. * * @param options Configuration options for the mocks */ export declare const setupBasicMocks: (options?: SetupBasicMocksOptions) => void;