import { MetaNodeInternal } from "./metaComponent"; import { Log } from "../log"; import { MetaAttributeVariableOptions } from "./parseMetaHTMLAttribute"; declare type PropTypeAttributeValue = { type: "PropTypeAttributeValue"; required: boolean; nodeName: string; attributeName: string; }; declare type PropTypeAttributeValueOptions = { type: "PropTypeAttributeValueOptions"; required: boolean; nodeName: string; attributeName: string; options: MetaAttributeVariableOptions["options"]; }; declare type PropTypeVariable = { type: "PropTypeVariable"; required: boolean; }; export declare type Props = Record; export declare function getProps(nodes: MetaNodeInternal[], log: Log): Props; export {};