import TypesInternal from "@prismicio/types-internal/lib/customtypes/index.js"; import { PluginSystemHelpers } from "../createPluginSystemHelpers.js"; export type ReadSliceModelArgs = { libraryID: string; sliceID: string; helpers: PluginSystemHelpers; }; export type ReadSliceModelReturnType = { model: TypesInternal.SharedSlice; }; export declare const readSliceModel: (args: ReadSliceModelArgs) => Promise;