declare const types: (import("sanity").SchemaTypeDefinition | { name: string; title: string; type: string; components: { input: ({ renderDefault, path, value, ...rest }: import("sanity").ObjectInputProps) => import("react").JSX.Element; }; description: string; fields: ({ name: string; title: string; type: string; components: { input: ({ value, onChange, renderDefault, path, ...rest }: import("sanity").StringInputProps) => import("react").JSX.Element; }; description?: undefined; } | { name: string; title: string; type: string; description: string; components?: undefined; } | { name: string; title: string; type: string; components?: undefined; description?: undefined; })[]; } | { name: string; title: string; type: string; fields: ({ name: string; title: string; type: string; initialValue: string; options: { list: { title: string; value: string; }[]; }; } | { name: string; title: string; type: string; initialValue?: undefined; options?: undefined; })[]; } | { name: string; title: string; type: string; fields: { name: string; title: string; type: string; description: string; validation: (Rule: any) => any; }[]; preview: { select: { locale: string; url: string; }; prepare({ locale, url }: { locale: string; url: string; }): { title: string; subtitle: string; }; }; })[]; export default types;