import { CfnResource, Resolvable } from '../../base';
export declare type MountTarget_Type = 'AWS::EFS::MountTarget';
export declare const MountTarget_Type = "AWS::EFS::MountTarget";
/**
 * Resource Type definition for AWS::EFS::MountTarget {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html}
 */
export default function MountTarget(props: MountTarget_Properties): CfnResource<MountTarget_Properties>;
/**
 * Resource Type definition for AWS::EFS::MountTarget {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html}
 */
export declare type MountTarget_Properties = {
    Id?: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress}
     */
    IpAddress?: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid}
     */
    FileSystemId: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-securitygroups}
     */
    SecurityGroups: Resolvable<string>[];
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid}
     */
    SubnetId: Resolvable<string>;
};
