import { IEnvironmentAware } from "../environment-aware";
import * as constructs from "constructs";
/**
 * Indicates that this resource can be referenced as a Feed.
 *
 * @stability experimental
 */
export interface IFeedRef extends constructs.IConstruct, IEnvironmentAware {
    /**
     * A reference to a Feed resource.
     */
    readonly feedRef: FeedReference;
}
/**
 * A reference to a Feed resource.
 *
 * @struct
 * @stability external
 */
export interface FeedReference {
    /**
     * The Id of the Feed resource.
     */
    readonly feedId: string;
    /**
     * The ARN of the Feed resource.
     */
    readonly feedArn: string;
}
