import { CfnResource, Resolvable } from '../../base';
export declare type Policy_Type = 'AWS::IoT::Policy';
export declare const Policy_Type = "AWS::IoT::Policy";
/**
 * Resource Type definition for AWS::IoT::Policy {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html}
 */
export default function Policy(props: Policy_Properties): CfnResource<Policy_Properties>;
/**
 * Resource Type definition for AWS::IoT::Policy {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html}
 */
export declare type Policy_Properties = {
    Id?: Resolvable<string>;
    Arn?: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument}
     */
    PolicyDocument: {
        [k: string]: unknown;
    };
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname}
     */
    PolicyName?: Resolvable<string>;
};
