import { type AdminViewRestResource, type AdminViewSource } from './cli-add-workspace-admin-view-types.js'; /** * Assert that admin-view package dependencies are available before file writes. * * This is a no-op while `@wp-typia/dataviews` is publicly available on npm. * The exported seam is retained so future availability checks can stay * centralized ahead of scaffold mutations. */ export declare function assertAdminViewPackageAvailability(): void; export declare function parseAdminViewSource(source?: string): AdminViewSource | undefined; export declare function resolveRestResourceSource(restResources: AdminViewRestResource[], source: AdminViewSource | undefined): AdminViewRestResource | undefined; export declare function resolveAdminViewCoreDataSource(source: AdminViewSource | undefined): import("./cli-add-workspace-admin-view-types.js").AdminViewCoreDataSource | undefined;