export declare class PropDef {
    /**
     * The property to display
     */
    prop: {
        [key: string]: any;
    };
    render(): any[];
}
