import type { RequestContext } from './types'; export interface ComponentPropInfo { name: string; required?: boolean; deprecated?: boolean; isAttribute?: boolean; commentMarkdown?: string; values?: string[]; } export declare function getComponentProps(this: RequestContext, fileName: string, tag: string): ComponentPropInfo[] | undefined;