export interface PropInfo {
    name: string;
    type: string;
    isOptional: boolean;
    defaultValue?: string;
}
export declare function parseProps(filePath: string): PropInfo[];
