import type { FakerContext } from './types';
type CreateContextOptions = {
    seed?: number;
};
/**
 * Creates a new faker context for tracking schema references and recursion depth
 */
export declare function createContext(options?: CreateContextOptions): FakerContext;
export {};
