import { CfnResource, Resolvable } from '../../base';
export declare type LocalGatewayRoute_Type = 'AWS::EC2::LocalGatewayRoute';
export declare const LocalGatewayRoute_Type = "AWS::EC2::LocalGatewayRoute";
/**
 * Describes a route for a local gateway route table. {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html}
 */
export default function LocalGatewayRoute(props: LocalGatewayRoute_Properties): CfnResource<LocalGatewayRoute_Properties>;
/**
 * Describes a route for a local gateway route table. {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html}
 */
export declare type LocalGatewayRoute_Properties = {
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-destinationcidrblock}
     */
    DestinationCidrBlock: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayroutetableid}
     */
    LocalGatewayRouteTableId: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayroute.html#cfn-ec2-localgatewayroute-localgatewayvirtualinterfacegroupid}
     */
    LocalGatewayVirtualInterfaceGroupId: Resolvable<string>;
    State?: Resolvable<string>;
    Type?: Resolvable<string>;
};
