import ts from 'typescript'; import type { ComponentDefinition } from './interfaces'; import type { ExpandedProp, ExtractedDescription } from './extractor'; export declare function buildComponentDefinition(name: string, dashCaseName: string, props: Array, functions: Array, defaultValues: Record, componentDescription: ExtractedDescription, checker: ts.TypeChecker): ComponentDefinition;