import type { ISODate } from "../../CustomTypes/ISODate";
import type { OrganizationId } from "../Organization";
import type { EmailAddress } from "../../CustomTypes/EmailAddress";
import type { NonEmptyString } from "../../CustomTypes/NonEmptyString";
export interface InvitedUser {
    id: NonEmptyString;
    email: EmailAddress;
    sentDate: ISODate;
    organizationId: OrganizationId;
}
export declare const isInvitedUser: import("@altostra/type-validations").ObjectOfTypeValidation<InvitedUser>;
