/**
 * Farcaster API V2
 * The Farcaster API allows you to interact with the Farcaster protocol. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
 *
 * The version of the OpenAPI document: 2.26.1
 * Contact: team@neynar.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @enum {string}
 */
export declare const SharedSignerPermission: {
    readonly WriteAll: "WRITE_ALL";
    readonly ReadOnly: "READ_ONLY";
    readonly None: "NONE";
    readonly PublishCast: "PUBLISH_CAST";
    readonly DeleteCast: "DELETE_CAST";
    readonly PublishReaction: "PUBLISH_REACTION";
    readonly DeleteReaction: "DELETE_REACTION";
    readonly UpdateProfile: "UPDATE_PROFILE";
    readonly FollowUser: "FOLLOW_USER";
    readonly UnfollowUser: "UNFOLLOW_USER";
    readonly FollowChannel: "FOLLOW_CHANNEL";
    readonly UnfollowChannel: "UNFOLLOW_CHANNEL";
    readonly AddVerification: "ADD_VERIFICATION";
    readonly RemoveVerification: "REMOVE_VERIFICATION";
    readonly WriteFrameAction: "WRITE_FRAME_ACTION";
};
export type SharedSignerPermission = typeof SharedSignerPermission[keyof typeof SharedSignerPermission];
