import { MetaFunction } from "./meta-function-type"; /** * Validates if the object input is a valid Meta-Function declaration object * * This does not validates the rules of the object data, such as the validity of all types */ export declare function isMetaFunction(input: object, isPackage?: boolean): asserts input is MetaFunction;