import { CfnResource, Resolvable } from '../../base';
export declare type Master_Type = 'AWS::GuardDuty::Master';
export declare const Master_Type = "AWS::GuardDuty::Master";
/**
 * Resource Type definition for AWS::GuardDuty::Master {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html}
 */
export default function Master(props: Master_Properties): CfnResource<Master_Properties>;
/**
 * Resource Type definition for AWS::GuardDuty::Master {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html}
 */
export declare type Master_Properties = {
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-detectorid}
     */
    DetectorId: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-masterid}
     */
    MasterId: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html#cfn-guardduty-master-invitationid}
     */
    InvitationId?: Resolvable<string>;
};
