export function examples(theme: any): ({ title: string; command: string; jsx?: undefined; component?: undefined; description?: undefined; } | { title: string; jsx: string; command?: undefined; component?: undefined; description?: undefined; } | { title: string; jsx: string; component: JSX.Element; command?: undefined; description?: undefined; } | { title: string; description: string; jsx: string; command?: undefined; component?: undefined; })[]; export const properties: ({ name: string; props: ({ name: string; type: string; max: number; min: number; suffix: string; } | { name: string; type: string; max: number; suffix: string; min?: undefined; })[]; } | { name: string; props: ({ name: string; type: string; max: number; step: number; suffix?: undefined; } | { name: string; type: string; max: number; step: number; suffix: string; })[]; } | { name: string; props: { name: string; type: string; }[]; })[]; export const features: string[];