import type { CmsEntry, ICmsEntrySystem } from "../../../types/index.js"; interface IInputWithPossibleSystem { system: Partial; } interface IParams { input: Partial; original?: CmsEntry | null; } export declare const getSystem: ({ input, original }: IParams) => ICmsEntrySystem | undefined; export {};