import { Schema } from "effect"; export type ODataListEnvelope = { readonly "@odata.context"?: string | null; readonly "@odata.count"?: number; readonly "@odata.nextLink"?: string | null; readonly value: ReadonlyArray; }; export declare const ODataListEnvelopeSchema: (item: Item) => Schema.Decoder, never>; export declare const ODataUnknownListEnvelopeSchema: Schema.Decoder, never>; export declare const PropertyReplicationIdentifierSchema: Schema.Struct<{ readonly ListingKey: Schema.decodeTo, never, never>; readonly ModificationTimestamp: Schema.optionalKey>; }>; export declare const MemberReplicationIdentifierSchema: Schema.Struct<{ readonly MemberKey: Schema.decodeTo, never, never>; readonly ModificationTimestamp: Schema.optionalKey>; }>; export declare const OfficeReplicationIdentifierSchema: Schema.Struct<{ readonly OfficeKey: Schema.decodeTo, never, never>; readonly ModificationTimestamp: Schema.optionalKey>; }>; export declare const PropertyReplicationIdentifierResponseSchema: Schema.Decoder, never>; export declare const MemberReplicationIdentifierResponseSchema: Schema.Decoder, never>; export declare const OfficeReplicationIdentifierResponseSchema: Schema.Decoder, never>; export type PropertyReplicationIdentifier = typeof PropertyReplicationIdentifierSchema.Type; export type MemberReplicationIdentifier = typeof MemberReplicationIdentifierSchema.Type; export type OfficeReplicationIdentifier = typeof OfficeReplicationIdentifierSchema.Type; //# sourceMappingURL=odata.d.ts.map