import { Construct } from 'constructs';
/**
 * Props for `AppInstance`.
 */
export interface AppInstanceAdminProps {
    /**
     * The name of the app instance.
     *
     * @default - None
     */
    readonly appInstanceAdminArn: string;
    /**
     * The name of the app instance.
     *
     * @default - None
     */
    readonly appInstanceArn: string;
}
export declare class MessagingAppInstanceAdmin extends Construct {
    readonly appInstanceAdminArn: string;
    readonly appInstanceAdminName: string;
    constructor(scope: Construct, id: string, props: AppInstanceAdminProps);
}
