import React from "react"; export interface SketchAttributesCardProps { title?: string; autoHide?: boolean; /** Map from value IDs to human readable for one or more exportIds */ mappings?: { [exportId: string]: { [value: string]: string; }; }; } export declare const SketchAttributesCard: ({ title, autoHide, mappings, }: SketchAttributesCardProps) => React.JSX.Element | null; export default SketchAttributesCard;