declare const _default: ({ title: string; screenshot: string; schema: { componentName: string; props: { children: string; copyable?: undefined; editable?: undefined; }; }; } | { title: string; screenshot: string; schema: { componentName: string; props: { copyable: boolean; children: string; editable?: undefined; }; }; } | { title: string; screenshot: string; schema: { componentName: string; props: { editable: boolean; children: string; copyable?: undefined; }; }; })[]; export default _default;