declare const snippets: ({ title: string; screenshot: string; schema: { componentName: string; props: { prefix: string; type: string; size: string; htmlType: string; component: string; children: string; }; children?: undefined; }; } | { title: string; screenshot: string; schema: { componentName: string; props: { prefix: string; type: string; size: string; label: { type: string; value: any; }; defaultSelectedKeys: any[]; autoWidth: boolean; popupTriggerType: string; plainData: string; }; children: any; }; } | { title: string; screenshot: string; schema: { componentName: string; props: { prefix?: undefined; type?: undefined; size?: undefined; htmlType?: undefined; component?: undefined; children?: undefined; }; children: ({ componentName: string; props: { type: string; style: { margin: string; }; htmlType: string; children: string; }; children: { componentName: string; props: { type: string; }; }[]; } | { componentName: string; props: { type: string; style: { margin: string; }; htmlType: string; children: string; }; children?: undefined; })[]; }; })[]; export default snippets;