import { DatetimeDefinition, ObjectDefinition, ObjectSchemaType } from "sanity"; declare const richDateTypeName: "richDate"; type RichDateSchemaType = Omit & { options?: DatetimeDefinition['options']; }; /** * @public */ interface RichDateDefinition extends Omit { type: typeof richDateTypeName; options?: DatetimeDefinition['options']; } declare module 'sanity' { interface IntrinsicDefinitions { richDate: RichDateDefinition; } } interface RichDate { local: string; utc: string; timezone: string; offset: number; } declare const richDate: import("sanity").Plugin; export { type RichDate, type RichDateDefinition, type RichDateSchemaType, richDate }; //# sourceMappingURL=index.d.ts.map