/** * Standard Salesforce objects that are part of the org's infrastructure, not * user data. These are excluded from the load order (you can't really "seed" * these — they're created by Salesforce or by setup operations). * * They remain nodes in the graph (edges referencing them are preserved and * rendered with an asterisk) so users understand the full dependency picture. */ export declare const STANDARD_ROOT_OBJECTS: Set; export declare function isStandardRootObject(name: string): boolean; export declare function isSystemObject(name: string): boolean;