export interface InjectPropsParams { /** Path of current component */ currentDir: string; /** Attributes of template markdown */ attributes: Record; /** Content of template markdown */ markdownBody: string; /** Placeholder for inserting Props doc */ placeholder: string; /** Target language */ language?: string; } export default function injectProps(options: InjectPropsParams): string;