export declare const ResourceShareFeatureSet: {
    readonly CreatedFromPolicy: "CREATED_FROM_POLICY";
    readonly PromotingToStandard: "PROMOTING_TO_STANDARD";
    readonly Standard: "STANDARD";
};
/**
 * The feature set of the resource share.
 */
export type ResourceShareFeatureSet = (typeof ResourceShareFeatureSet)[keyof typeof ResourceShareFeatureSet];
export declare const ResourceShareStatus: {
    readonly Pending: "PENDING";
    readonly Active: "ACTIVE";
    readonly Failed: "FAILED";
    readonly Deleting: "DELETING";
    readonly Deleted: "DELETED";
};
/**
 * The current status of the resource share.
 */
export type ResourceShareStatus = (typeof ResourceShareStatus)[keyof typeof ResourceShareStatus];
